From cb1d0416d68ac4aab9a4fddf346226b2900204ae Mon Sep 17 00:00:00 2001 From: Maruf Rasully <100434800+marufrasully@users.noreply.github.com> Date: Wed, 24 Jan 2024 10:58:19 +0100 Subject: [PATCH 1/9] feat: add pnpm --- .gitattributes | 1 + esbuild.js | 2 +- lerna.json | 15 - package.json | 21 +- packages/binding-parser/tsconfig.json | 2 +- packages/binding/package.json | 20 +- packages/binding/tsconfig.json | 36 +- packages/context/package.json | 12 +- packages/context/tsconfig.json | 15 +- packages/fe/package.json | 14 +- packages/fe/tsconfig.json | 27 +- packages/language-server/package.json | 28 +- packages/language-server/tsconfig.json | 48 +- packages/logger/package.json | 2 +- packages/logger/tsconfig-test.json | 7 +- packages/logger/tsconfig.json | 2 +- packages/logic-utils/package.json | 8 +- packages/logic-utils/tsconfig.json | 18 +- packages/semantic-model-types/tsconfig.json | 2 +- packages/semantic-model/package.json | 6 +- packages/semantic-model/tsconfig.json | 15 +- packages/settings/tsconfig.json | 2 +- packages/user-facing-text/tsconfig.json | 2 +- .../package.json | 2 +- .../package.json | 10 +- .../tsconfig.json | 18 +- packages/xml-views-completion/package.json | 6 +- packages/xml-views-completion/tsconfig.json | 15 +- packages/xml-views-quick-fix/package.json | 4 +- packages/xml-views-quick-fix/tsconfig.json | 15 +- packages/xml-views-tooltip/package.json | 8 +- packages/xml-views-tooltip/tsconfig.json | 18 +- packages/xml-views-validation/package.json | 12 +- packages/xml-views-validation/tsconfig.json | 24 +- pnpm-lock.yaml | 11907 ++++++++++++++++ pnpm-workspace.yaml | 4 + test-packages/framework/tsconfig.json | 2 +- test-packages/test-utils/tsconfig.json | 2 +- tsconfig.base.json | 21 - tsconfig.json | 22 +- yarn.lock | 10741 -------------- 41 files changed, 12247 insertions(+), 10889 deletions(-) delete mode 100644 lerna.json create mode 100644 pnpm-lock.yaml create mode 100644 pnpm-workspace.yaml delete mode 100644 tsconfig.base.json delete mode 100644 yarn.lock diff --git a/.gitattributes b/.gitattributes index 6313b56c5..53b71b179 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ * text=auto eol=lf +pnpm-lock.yaml eol=lf merge=ours \ No newline at end of file diff --git a/esbuild.js b/esbuild.js index c98db68cd..179b4bbbf 100644 --- a/esbuild.js +++ b/esbuild.js @@ -24,7 +24,7 @@ async function builder(options) { }; if (process.argv.slice(2).includes("--watch")) { - console.log("Applyin watch config"); + console.log("Applying watch config"); buildConfig.watch = true; buildConfig.minify = false; } diff --git a/lerna.json b/lerna.json deleted file mode 100644 index dc28b90e9..000000000 --- a/lerna.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "packages": ["packages/*", "test-packages/*"], - "npmClient": "yarn", - "version": "4.0.5", - "command": { - "publish": { - "conventionalCommits": true - }, - "version": { - "allowBranch": "master", - "message": "chore(release): release %s", - "exact": true - } - } -} diff --git a/package.json b/package.json index 08ccd32ca..05fbfffe9 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,6 @@ { - "name": "root", + "name": "@ui5-language-assistant/root", "private": true, - "workspaces": { - "packages": [ - "packages/*", - "test-packages/*" - ], - "nohoist": [ - "vscode-ui5-language-assistant/prettier", - "vscode-ui5-language-assistant/@prettier/plugin-xml", - "vscode-ui5-language-assistant/@ui5-language-assistant/language-server", - "vscode-ui5-language-assistant/@ui5-language-assistant/language-server/**" - ] - }, "scripts": { "build:quick": "lerna run compile && lerna run bundle && lerna run package", "release:version": "lerna version --force-publish", @@ -91,6 +79,13 @@ "typescript": "4.9.4", "esbuild": "0.17.12" }, + "engines": { + "npm": "please-use-pnpm", + "yarn": "please-use-pnpm", + "pnpm": "8.14.0", + "node": ">=18.x" + }, + "packageManager": "pnpm@8.14.0", "lint-staged": { "*.{js,ts,md,json}": [ "prettier --write" diff --git a/packages/binding-parser/tsconfig.json b/packages/binding-parser/tsconfig.json index 7ecd7b544..7396fa714 100644 --- a/packages/binding-parser/tsconfig.json +++ b/packages/binding-parser/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/packages/binding/package.json b/packages/binding/package.json index 0c830a258..ecb82c388 100644 --- a/packages/binding/package.json +++ b/packages/binding/package.json @@ -15,22 +15,22 @@ "repository": "https://github.com/sap/ui5-language-assistant/", "license": "Apache-2.0", "dependencies": { - "@ui5-language-assistant/binding-parser": "1.0.7", - "@ui5-language-assistant/logger": "0.0.1", - "@ui5-language-assistant/context": "4.0.23", - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/xml-views-completion": "4.0.23", - "@ui5-language-assistant/xml-views-validation": "4.0.18", - "@ui5-language-assistant/settings": "4.0.9", + "@ui5-language-assistant/binding-parser": "workspace:*", + "@ui5-language-assistant/logger": "workspace:*", + "@ui5-language-assistant/context": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/xml-views-completion": "workspace:*", + "@ui5-language-assistant/xml-views-validation": "workspace:*", + "@ui5-language-assistant/settings": "workspace:*", "deep-freeze-strict": "1.1.1", "lodash": "4.17.21" }, "devDependencies": { "@sap-ux/vocabularies-types": "0.7.4", "@types/lodash": "4.14.168", - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/test-framework": "4.0.12", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/test-framework": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/parser": "1.0.7", "vscode-languageserver-protocol": "3.17.2", diff --git a/packages/binding/tsconfig.json b/packages/binding/tsconfig.json index b6db5da73..11b130ee1 100644 --- a/packages/binding/tsconfig.json +++ b/packages/binding/tsconfig.json @@ -1,9 +1,41 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"] + "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"], + "references": [ + { + "path": "../binding-parser" + }, + { + "path": "../logger" + }, + { + "path": "../context" + }, + { + "path": "../logic-utils" + }, + { + "path": "../xml-views-completion" + }, + { + "path": "../xml-views-validation" + }, + { + "path": "../settings" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../../test-packages/framework" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/context/package.json b/packages/context/package.json index f9d9c33b3..f4967ce22 100644 --- a/packages/context/package.json +++ b/packages/context/package.json @@ -19,9 +19,9 @@ "@sap-ux/annotation-converter": "0.5.20", "@sap-ux/edmx-parser": "0.5.13", "@sap-ux/project-access": "1.9.1", - "@ui5-language-assistant/logger": "0.0.1", - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/settings": "4.0.9", + "@ui5-language-assistant/logger": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/settings": "workspace:*", "fs-extra": "10.1.0", "globby": "11.1.0", "js-yaml": "4.1.0", @@ -36,9 +36,9 @@ "@types/lodash": "4.14.168", "@types/node-fetch": "2.5.10", "@types/semver": "7.3.12", - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/test-framework": "4.0.12", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/test-framework": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", "rimraf": "3.0.2", "tmp-promise": "3.0.2", "proxyquire": "2.1.3" diff --git a/packages/context/tsconfig.json b/packages/context/tsconfig.json index 7ecd7b544..0d4a25362 100644 --- a/packages/context/tsconfig.json +++ b/packages/context/tsconfig.json @@ -1,9 +1,20 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../logic-utils" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../../test-packages/framework" + } + ] } diff --git a/packages/fe/package.json b/packages/fe/package.json index eb6fec2e5..c9eb481ed 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -16,19 +16,19 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "@ui5-language-assistant/context": "4.0.23", - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/xml-views-completion": "4.0.23", - "@ui5-language-assistant/xml-views-validation": "4.0.18", + "@ui5-language-assistant/context": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/xml-views-completion": "workspace:*", + "@ui5-language-assistant/xml-views-validation": "workspace:*", "deep-freeze-strict": "1.1.1", "lodash": "4.17.21" }, "devDependencies": { "@sap-ux/vocabularies-types": "0.6.8", "@types/lodash": "4.14.168", - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/test-framework": "4.0.12", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/test-framework": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/parser": "1.0.7", "vscode-languageserver-protocol": "3.17.2", diff --git a/packages/fe/tsconfig.json b/packages/fe/tsconfig.json index b6db5da73..c89661ca5 100644 --- a/packages/fe/tsconfig.json +++ b/packages/fe/tsconfig.json @@ -1,9 +1,32 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"] + "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"], + "references": [ + { + "path": "../context" + }, + { + "path": "../logic-utils" + }, + { + "path": "../xml-views-completion" + }, + { + "path": "../xml-views-validation" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../../test-packages/framework" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 4ab1cb200..1c2a82505 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -25,19 +25,19 @@ "node": ">=10.0.0" }, "dependencies": { - "@ui5-language-assistant/binding": "1.0.26", + "@ui5-language-assistant/binding": "workspace:*", "@sap/swa-for-sapbas-vsx": "1.1.9", - "@ui5-language-assistant/logger": "0.0.1", - "@ui5-language-assistant/context": "4.0.23", - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/fe": "4.0.24", - "@ui5-language-assistant/semantic-model": "4.0.16", - "@ui5-language-assistant/settings": "4.0.9", - "@ui5-language-assistant/user-facing-text": "4.0.8", - "@ui5-language-assistant/xml-views-completion": "4.0.23", - "@ui5-language-assistant/xml-views-quick-fix": "4.0.17", - "@ui5-language-assistant/xml-views-tooltip": "4.0.23", - "@ui5-language-assistant/xml-views-validation": "4.0.18", + "@ui5-language-assistant/logger": "workspace:*", + "@ui5-language-assistant/context": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/fe": "workspace:*", + "@ui5-language-assistant/semantic-model": "workspace:*", + "@ui5-language-assistant/settings": "workspace:*", + "@ui5-language-assistant/user-facing-text": "workspace:*", + "@ui5-language-assistant/xml-views-completion": "workspace:*", + "@ui5-language-assistant/xml-views-quick-fix": "workspace:*", + "@ui5-language-assistant/xml-views-tooltip": "workspace:*", + "@ui5-language-assistant/xml-views-validation": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "@xml-tools/parser": "1.0.7", @@ -53,8 +53,8 @@ "@types/node-fetch": "2.5.10", "@types/semver": "7.3.12", "@types/tmp": "0.2.0", - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", "string-replace-loader": "3.1.0", "vscode-languageserver-types": "3.17.2" }, diff --git a/packages/language-server/tsconfig.json b/packages/language-server/tsconfig.json index b6db5da73..4371e9c96 100644 --- a/packages/language-server/tsconfig.json +++ b/packages/language-server/tsconfig.json @@ -1,9 +1,53 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"] + "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"], + "references": [ + { + "path": "../binding" + }, + { + "path": "../logger" + }, + { + "path": "../context" + }, + { + "path": "../logic-utils" + }, + { + "path": "../fe" + }, + { + "path": "../semantic-model" + }, + { + "path": "../xml-views-completion" + }, + { + "path": "../xml-views-validation" + }, + { + "path": "../settings" + }, + { + "path": "../user-facing-text" + }, + { + "path": "../xml-views-quick-fix" + }, + { + "path": "../xml-views-tooltip" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/logger/package.json b/packages/logger/package.json index ceff0a197..cf48467a2 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -17,7 +17,7 @@ "typings": "./api.d.ts", "dependencies": { "@vscode-logging/logger": "1.2.2", - "@ui5-language-assistant/settings": "4.0.9" + "@ui5-language-assistant/settings": "workspace:*" }, "devDependencies": { "@vscode-logging/types": "0.1.4" diff --git a/packages/logger/tsconfig-test.json b/packages/logger/tsconfig-test.json index fb1f25450..2bb993737 100644 --- a/packages/logger/tsconfig-test.json +++ b/packages/logger/tsconfig-test.json @@ -1,4 +1,9 @@ { "extends": "./tsconfig.json", - "include": ["src/**/*.ts", "test/**/*.ts"] + "include": ["src/**/*.ts", "test/**/*.ts"], + "references": [ + { + "path": "../settings" + } + ] } diff --git a/packages/logger/tsconfig.json b/packages/logger/tsconfig.json index 7ecd7b544..7396fa714 100644 --- a/packages/logger/tsconfig.json +++ b/packages/logger/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/packages/logic-utils/package.json b/packages/logic-utils/package.json index ae8c45c5b..a11743049 100644 --- a/packages/logic-utils/package.json +++ b/packages/logic-utils/package.json @@ -16,8 +16,8 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/settings": "4.0.9", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/settings": "workspace:*", "@xml-tools/ast": "5.0.0", "lodash": "4.17.21", "node-fetch": "2.6.9", @@ -25,8 +25,8 @@ "proxy-from-env": "1.1.0" }, "devDependencies": { - "@ui5-language-assistant/semantic-model": "4.0.16", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/semantic-model": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/parser": "1.0.7" }, "scripts": { diff --git a/packages/logic-utils/tsconfig.json b/packages/logic-utils/tsconfig.json index 7ecd7b544..6c314e209 100644 --- a/packages/logic-utils/tsconfig.json +++ b/packages/logic-utils/tsconfig.json @@ -1,9 +1,23 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../settings" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../semantic-model" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/semantic-model-types/tsconfig.json b/packages/semantic-model-types/tsconfig.json index a3a3e7ca8..0be349bff 100644 --- a/packages/semantic-model-types/tsconfig.json +++ b/packages/semantic-model-types/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "baseUrl": "." }, diff --git a/packages/semantic-model/package.json b/packages/semantic-model/package.json index 47adf4b41..90b953a08 100644 --- a/packages/semantic-model/package.json +++ b/packages/semantic-model/package.json @@ -17,8 +17,8 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/logger": "0.0.1", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/logger": "workspace:*", "ajv": "6.12.3", "deep-freeze-strict": "1.1.1", "fs-extra": "10.1.0", @@ -26,7 +26,7 @@ }, "devDependencies": { "@types/deep-freeze-strict": "1.1.0", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/test-utils": "workspace:*", "json-schema-to-typescript": "10.0.3" }, "scripts": { diff --git a/packages/semantic-model/tsconfig.json b/packages/semantic-model/tsconfig.json index 7ecd7b544..566b858de 100644 --- a/packages/semantic-model/tsconfig.json +++ b/packages/semantic-model/tsconfig.json @@ -1,9 +1,20 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../logger" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/settings/tsconfig.json b/packages/settings/tsconfig.json index 7ecd7b544..7396fa714 100644 --- a/packages/settings/tsconfig.json +++ b/packages/settings/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/packages/user-facing-text/tsconfig.json b/packages/user-facing-text/tsconfig.json index 7ecd7b544..7396fa714 100644 --- a/packages/user-facing-text/tsconfig.json +++ b/packages/user-facing-text/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index bb9635f43..1a01529d1 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.54" + "vscode-ui5-language-assistant": "workspace:*" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index c55d48c69..27ca4eab5 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -154,7 +154,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.43", + "@ui5-language-assistant/language-server": "workspace:*", "vscode-languageclient": "8.0.2", "@prettier/plugin-xml": "2.2.0", "prettier": "2.8.7" @@ -162,14 +162,14 @@ "devDependencies": { "@types/lodash": "4.14.168", "@types/vscode": "1.47.0", - "@ui5-language-assistant/settings": "4.0.9", - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/user-facing-text": "4.0.8", + "@ui5-language-assistant/settings": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/user-facing-text": "workspace:*", "lodash": "4.17.21", "proxyquire": "2.1.3", "vsce": "1.83.0", "vscode-languageserver": "8.0.2", "vscode-test": "1.6.1", - "@ui5-language-assistant/test-framework": "4.0.12" + "@ui5-language-assistant/test-framework": "workspace:*" } } diff --git a/packages/vscode-ui5-language-assistant/tsconfig.json b/packages/vscode-ui5-language-assistant/tsconfig.json index 26407ddfb..10dab1afb 100644 --- a/packages/vscode-ui5-language-assistant/tsconfig.json +++ b/packages/vscode-ui5-language-assistant/tsconfig.json @@ -1,9 +1,23 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts", "src/manifest/*.json"] + "include": ["src/**/*", "test/**/*", "api.d.ts", "src/manifest/*.json"], + "references": [ + { + "path": "../language-server" + }, + { + "path": "../settings" + }, + { + "path": "../logic-utils" + }, + { + "path": "../../user-facing-text" + } + ] } diff --git a/packages/xml-views-completion/package.json b/packages/xml-views-completion/package.json index 6ab21c1b6..873b65409 100644 --- a/packages/xml-views-completion/package.json +++ b/packages/xml-views-completion/package.json @@ -21,8 +21,8 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "@ui5-language-assistant/context": "4.0.23", - "@ui5-language-assistant/logic-utils": "4.0.17", + "@ui5-language-assistant/context": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/common": "0.1.2", "@xml-tools/content-assist": "3.1.7", @@ -30,7 +30,7 @@ "lodash": "4.17.21" }, "devDependencies": { - "@ui5-language-assistant/semantic-model": "4.0.16", + "@ui5-language-assistant/semantic-model": "workspace:*", "@xml-tools/parser": "1.0.7", "chevrotain": "7.0.1" }, diff --git a/packages/xml-views-completion/tsconfig.json b/packages/xml-views-completion/tsconfig.json index 7ecd7b544..9c8623208 100644 --- a/packages/xml-views-completion/tsconfig.json +++ b/packages/xml-views-completion/tsconfig.json @@ -1,9 +1,20 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../context" + }, + { + "path": "../logic-utils" + }, + { + "path": "../semantic-model" + } + ] } diff --git a/packages/xml-views-quick-fix/package.json b/packages/xml-views-quick-fix/package.json index 57824c56b..99214739b 100644 --- a/packages/xml-views-quick-fix/package.json +++ b/packages/xml-views-quick-fix/package.json @@ -21,13 +21,13 @@ "node": ">=10.0.0" }, "dependencies": { - "@ui5-language-assistant/logic-utils": "4.0.17", + "@ui5-language-assistant/logic-utils": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "lodash": "4.17.21" }, "devDependencies": { - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/parser": "1.0.7", "vscode-languageserver": "8.0.2" }, diff --git a/packages/xml-views-quick-fix/tsconfig.json b/packages/xml-views-quick-fix/tsconfig.json index 7ecd7b544..01a2c48a7 100644 --- a/packages/xml-views-quick-fix/tsconfig.json +++ b/packages/xml-views-quick-fix/tsconfig.json @@ -1,9 +1,20 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../logic-utils" + }, + { + "path": "../semantic-model" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/xml-views-tooltip/package.json b/packages/xml-views-tooltip/package.json index d57da6bfa..a8b830456 100644 --- a/packages/xml-views-tooltip/package.json +++ b/packages/xml-views-tooltip/package.json @@ -22,10 +22,10 @@ "node": ">=10.0.0" }, "dependencies": { - "@ui5-language-assistant/context": "4.0.23", - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/semantic-model": "4.0.16", - "@ui5-language-assistant/semantic-model-types": "4.0.9", + "@ui5-language-assistant/context": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/semantic-model": "workspace:*", + "@ui5-language-assistant/semantic-model-types": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "@xml-tools/common": "0.1.2", diff --git a/packages/xml-views-tooltip/tsconfig.json b/packages/xml-views-tooltip/tsconfig.json index 7ecd7b544..1c1095f44 100644 --- a/packages/xml-views-tooltip/tsconfig.json +++ b/packages/xml-views-tooltip/tsconfig.json @@ -1,9 +1,23 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../context" + }, + { + "path": "../logic-utils" + }, + { + "path": "../semantic-model" + }, + { + "path": "../semantic-model-types" + } + ] } diff --git a/packages/xml-views-validation/package.json b/packages/xml-views-validation/package.json index a4b38e8a2..82ead91ab 100644 --- a/packages/xml-views-validation/package.json +++ b/packages/xml-views-validation/package.json @@ -21,19 +21,19 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "@ui5-language-assistant/logic-utils": "4.0.17", - "@ui5-language-assistant/semantic-model-types": "4.0.9", - "@ui5-language-assistant/user-facing-text": "4.0.8", + "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/user-facing-text": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/common": "0.1.2", "deep-freeze-strict": "1.1.1", "lodash": "4.17.21" }, "devDependencies": { - "@ui5-language-assistant/semantic-model": "4.0.16", - "@ui5-language-assistant/test-utils": "4.0.12", + "@ui5-language-assistant/semantic-model": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/parser": "1.0.7", - "@ui5-language-assistant/test-framework": "4.0.12" + "@ui5-language-assistant/test-framework": "workspace:*" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", diff --git a/packages/xml-views-validation/tsconfig.json b/packages/xml-views-validation/tsconfig.json index 7ecd7b544..c4cd16726 100644 --- a/packages/xml-views-validation/tsconfig.json +++ b/packages/xml-views-validation/tsconfig.json @@ -1,9 +1,29 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../logic-utils" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../user-facing-text" + }, + { + "path": "../semantic-model" + }, + { + "path": "../../test-packages/framework" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 000000000..a8d0694a9 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,11907 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + devDependencies: + '@changesets/cli': + specifier: 2.26.0 + version: 2.26.0 + '@commitlint/cli': + specifier: 11.0.0 + version: 11.0.0 + '@commitlint/config-conventional': + specifier: 11.0.0 + version: 11.0.0 + '@types/chai': + specifier: 4.2.14 + version: 4.2.14 + '@types/deep-equal-in-any-order': + specifier: 1.0.1 + version: 1.0.1 + '@types/fs-extra': + specifier: 9.0.11 + version: 9.0.11 + '@types/jest': + specifier: 29.2.6 + version: 29.2.6 + '@types/jest-specific-snapshot': + specifier: 0.5.5 + version: 0.5.5 + '@types/klaw-sync': + specifier: 6.0.0 + version: 6.0.0 + '@types/lodash': + specifier: 4.14.166 + version: 4.14.166 + '@types/rimraf': + specifier: 3.0.0 + version: 3.0.0 + '@types/sinon': + specifier: 9.0.10 + version: 9.0.10 + '@types/sinon-chai': + specifier: 3.2.5 + version: 3.2.5 + '@typescript-eslint/eslint-plugin': + specifier: 4.33.0 + version: 4.33.0(@typescript-eslint/parser@4.14.0)(eslint@7.18.0)(typescript@4.9.4) + '@typescript-eslint/parser': + specifier: 4.14.0 + version: 4.14.0(eslint@7.18.0)(typescript@4.9.4) + chai: + specifier: 4.2.0 + version: 4.2.0 + conventional-changelog-cli: + specifier: 2.1.1 + version: 2.1.1 + coveralls: + specifier: 3.1.0 + version: 3.1.0 + cz-conventional-changelog: + specifier: 3.3.0 + version: 3.3.0(@types/node@20.11.5)(typescript@4.9.4) + deep-equal-in-any-order: + specifier: 1.0.28 + version: 1.0.28 + esbuild: + specifier: 0.17.12 + version: 0.17.12 + eslint: + specifier: 7.18.0 + version: 7.18.0 + eslint-config-prettier: + specifier: 7.2.0 + version: 7.2.0(eslint@7.18.0) + eslint-plugin-eslint-comments: + specifier: 3.2.0 + version: 3.2.0(eslint@7.18.0) + fs-extra: + specifier: 10.1.0 + version: 10.1.0 + glob: + specifier: 7.1.6 + version: 7.1.6 + husky: + specifier: 8.0.1 + version: 8.0.1 + i18next: + specifier: 19.0.2 + version: 19.0.2 + jest: + specifier: 29.5.0 + version: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-config: + specifier: 29.5.0 + version: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-environment-jsdom: + specifier: ^29.5.0 + version: 29.7.0 + jest-environment-node: + specifier: 29.5.0 + version: 29.5.0 + jest-esm-transformer: + specifier: 1.0.0 + version: 1.0.0 + jest-extended: + specifier: 3.2.3 + version: 3.2.3(jest@29.5.0) + jest-junit: + specifier: 15.0.0 + version: 15.0.0 + jest-sonar: + specifier: 0.2.16 + version: 0.2.16 + jest-specific-snapshot: + specifier: 3.0.0 + version: 3.0.0(jest@29.5.0) + klaw-sync: + specifier: 6.0.0 + version: 6.0.0 + lerna: + specifier: ^7.0.2 + version: 7.4.2 + lint-staged: + specifier: 10.5.3 + version: 10.5.3 + make-dir: + specifier: 3.1.0 + version: 3.1.0 + mock-fs: + specifier: ^5.2.0 + version: 5.2.0 + npm-run-all: + specifier: 4.1.5 + version: 4.1.5 + nyc: + specifier: 15.1.0 + version: 15.1.0 + prettier: + specifier: 2.8.7 + version: 2.8.7 + rimraf: + specifier: 3.0.2 + version: 3.0.2 + shx: + specifier: 0.3.3 + version: 0.3.3 + simple-git: + specifier: 3.12.0 + version: 3.12.0 + source-map-support: + specifier: 0.5.19 + version: 0.5.19 + ts-jest: + specifier: 29.0.5 + version: 29.0.5(@babel/core@7.23.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4) + ts-node: + specifier: 8.5.2 + version: 8.5.2(typescript@4.9.4) + typescript: + specifier: 4.9.4 + version: 4.9.4 + + packages/binding: + dependencies: + '@ui5-language-assistant/binding-parser': + specifier: workspace:* + version: link:../binding-parser + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context + '@ui5-language-assistant/logger': + specifier: workspace:* + version: link:../logger + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/settings': + specifier: workspace:* + version: link:../settings + '@ui5-language-assistant/xml-views-completion': + specifier: workspace:* + version: link:../xml-views-completion + '@ui5-language-assistant/xml-views-validation': + specifier: workspace:* + version: link:../xml-views-validation + deep-freeze-strict: + specifier: 1.1.1 + version: 1.1.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@sap-ux/vocabularies-types': + specifier: 0.7.4 + version: 0.7.4 + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@ui5-language-assistant/test-framework': + specifier: workspace:* + version: link:../../test-packages/framework + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + vscode-languageserver-protocol: + specifier: 3.17.2 + version: 3.17.2 + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + + packages/binding-parser: + dependencies: + chevrotain: + specifier: 10.4.2 + version: 10.4.2 + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + devDependencies: + cross-env: + specifier: 7.0.3 + version: 7.0.3 + + packages/context: + dependencies: + '@sap-ux/annotation-converter': + specifier: 0.5.20 + version: 0.5.20 + '@sap-ux/edmx-parser': + specifier: 0.5.13 + version: 0.5.13 + '@sap-ux/project-access': + specifier: 1.9.1 + version: 1.9.1 + '@ui5-language-assistant/logger': + specifier: workspace:* + version: link:../logger + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/settings': + specifier: workspace:* + version: link:../settings + fs-extra: + specifier: 10.1.0 + version: 10.1.0 + globby: + specifier: 11.1.0 + version: 11.1.0 + js-yaml: + specifier: 4.1.0 + version: 4.1.0 + lodash: + specifier: 4.17.21 + version: 4.17.21 + semver: + specifier: 7.3.7 + version: 7.3.7 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + vscode-uri: + specifier: 2.1.2 + version: 2.1.2 + devDependencies: + '@sap-ux/vocabularies-types': + specifier: 0.6.8 + version: 0.6.8 + '@types/js-yaml': + specifier: 4.0.5 + version: 4.0.5 + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 + '@types/node-fetch': + specifier: 2.5.10 + version: 2.5.10 + '@types/semver': + specifier: 7.3.12 + version: 7.3.12 + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@ui5-language-assistant/test-framework': + specifier: workspace:* + version: link:../../test-packages/framework + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + proxyquire: + specifier: 2.1.3 + version: 2.1.3 + rimraf: + specifier: 3.0.2 + version: 3.0.2 + tmp-promise: + specifier: 3.0.2 + version: 3.0.2 + + packages/fe: + dependencies: + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/xml-views-completion': + specifier: workspace:* + version: link:../xml-views-completion + '@ui5-language-assistant/xml-views-validation': + specifier: workspace:* + version: link:../xml-views-validation + deep-freeze-strict: + specifier: 1.1.1 + version: 1.1.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@sap-ux/vocabularies-types': + specifier: 0.6.8 + version: 0.6.8 + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@ui5-language-assistant/test-framework': + specifier: workspace:* + version: link:../../test-packages/framework + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + vscode-languageserver-protocol: + specifier: 3.17.2 + version: 3.17.2 + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + + packages/language-server: + dependencies: + '@sap/swa-for-sapbas-vsx': + specifier: 1.1.9 + version: 1.1.9 + '@ui5-language-assistant/binding': + specifier: workspace:* + version: link:../binding + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context + '@ui5-language-assistant/fe': + specifier: workspace:* + version: link:../fe + '@ui5-language-assistant/logger': + specifier: workspace:* + version: link:../logger + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/semantic-model': + specifier: workspace:* + version: link:../semantic-model + '@ui5-language-assistant/settings': + specifier: workspace:* + version: link:../settings + '@ui5-language-assistant/user-facing-text': + specifier: workspace:* + version: link:../user-facing-text + '@ui5-language-assistant/xml-views-completion': + specifier: workspace:* + version: link:../xml-views-completion + '@ui5-language-assistant/xml-views-quick-fix': + specifier: workspace:* + version: link:../xml-views-quick-fix + '@ui5-language-assistant/xml-views-tooltip': + specifier: workspace:* + version: link:../xml-views-tooltip + '@ui5-language-assistant/xml-views-validation': + specifier: workspace:* + version: link:../xml-views-validation + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/ast-position': + specifier: 2.0.2 + version: 2.0.2 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + assert-never: + specifier: 1.2.1 + version: 1.2.1 + fs-extra: + specifier: 10.1.0 + version: 10.1.0 + lodash: + specifier: 4.17.21 + version: 4.17.21 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + vscode-languageserver-textdocument: + specifier: 1.0.1 + version: 1.0.1 + vscode-uri: + specifier: 2.1.2 + version: 2.1.2 + devDependencies: + '@types/js-yaml': + specifier: 4.0.5 + version: 4.0.5 + '@types/node-fetch': + specifier: 2.5.10 + version: 2.5.10 + '@types/semver': + specifier: 7.3.12 + version: 7.3.12 + '@types/tmp': + specifier: 0.2.0 + version: 0.2.0 + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + string-replace-loader: + specifier: 3.1.0 + version: 3.1.0(webpack@5.89.0) + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + + packages/logger: + dependencies: + '@ui5-language-assistant/settings': + specifier: workspace:* + version: link:../settings + '@vscode-logging/logger': + specifier: 1.2.2 + version: 1.2.2 + devDependencies: + '@vscode-logging/types': + specifier: 0.1.4 + version: 0.1.4 + + packages/logic-utils: + dependencies: + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@ui5-language-assistant/settings': + specifier: workspace:* + version: link:../settings + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + https-proxy-agent: + specifier: 5.0.1 + version: 5.0.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 + node-fetch: + specifier: 2.6.9 + version: 2.6.9 + proxy-from-env: + specifier: 1.1.0 + version: 1.1.0 + devDependencies: + '@ui5-language-assistant/semantic-model': + specifier: workspace:* + version: link:../semantic-model + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + + packages/semantic-model: + dependencies: + '@ui5-language-assistant/logger': + specifier: workspace:* + version: link:../logger + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + ajv: + specifier: 6.12.3 + version: 6.12.3 + deep-freeze-strict: + specifier: 1.1.1 + version: 1.1.1 + fs-extra: + specifier: 10.1.0 + version: 10.1.0 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@types/deep-freeze-strict': + specifier: 1.1.0 + version: 1.1.0 + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + json-schema-to-typescript: + specifier: 10.0.3 + version: 10.0.3 + + packages/semantic-model-types: {} + + packages/settings: + dependencies: + deep-freeze-strict: + specifier: 1.1.1 + version: 1.1.1 + + packages/user-facing-text: + dependencies: + deep-freeze-strict: + specifier: 1.1.1 + version: 1.1.1 + + packages/vscode-ui5-language-assistant: + dependencies: + '@prettier/plugin-xml': + specifier: 2.2.0 + version: 2.2.0 + '@ui5-language-assistant/language-server': + specifier: workspace:* + version: link:../language-server + prettier: + specifier: 2.8.7 + version: 2.8.7 + vscode-languageclient: + specifier: 8.0.2 + version: 8.0.2 + devDependencies: + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 + '@types/vscode': + specifier: 1.47.0 + version: 1.47.0 + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/settings': + specifier: workspace:* + version: link:../settings + '@ui5-language-assistant/test-framework': + specifier: workspace:* + version: link:../../test-packages/framework + '@ui5-language-assistant/user-facing-text': + specifier: workspace:* + version: link:../user-facing-text + lodash: + specifier: 4.17.21 + version: 4.17.21 + proxyquire: + specifier: 2.1.3 + version: 2.1.3 + vsce: + specifier: 1.83.0 + version: 1.83.0 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + vscode-test: + specifier: 1.6.1 + version: 1.6.1 + + packages/vscode-ui5-language-assistant-bas-ext: + devDependencies: + fs-extra: + specifier: 10.1.0 + version: 10.1.0 + vscode-ui5-language-assistant: + specifier: workspace:* + version: link:../vscode-ui5-language-assistant + + packages/xml-views-completion: + dependencies: + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/common': + specifier: 0.1.2 + version: 0.1.2 + '@xml-tools/content-assist': + specifier: 3.1.7 + version: 3.1.7 + assert-never: + specifier: 1.2.1 + version: 1.2.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@ui5-language-assistant/semantic-model': + specifier: workspace:* + version: link:../semantic-model + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + chevrotain: + specifier: 7.0.1 + version: 7.0.1 + + packages/xml-views-quick-fix: + dependencies: + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/ast-position': + specifier: 2.0.2 + version: 2.0.2 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + + packages/xml-views-tooltip: + dependencies: + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/semantic-model': + specifier: workspace:* + version: link:../semantic-model + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/ast-position': + specifier: 2.0.2 + version: 2.0.2 + '@xml-tools/common': + specifier: 0.1.2 + version: 0.1.2 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + + packages/xml-views-validation: + dependencies: + '@ui5-language-assistant/logic-utils': + specifier: workspace:* + version: link:../logic-utils + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:* + version: link:../semantic-model-types + '@ui5-language-assistant/user-facing-text': + specifier: workspace:* + version: link:../user-facing-text + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/common': + specifier: 0.1.2 + version: 0.1.2 + deep-freeze-strict: + specifier: 1.1.1 + version: 1.1.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@ui5-language-assistant/semantic-model': + specifier: workspace:* + version: link:../semantic-model + '@ui5-language-assistant/test-framework': + specifier: workspace:* + version: link:../../test-packages/framework + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: link:../../test-packages/test-utils + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + + test-packages/framework: + dependencies: + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + chevrotain: + specifier: 7.0.1 + version: 7.0.1 + fs-extra: + specifier: 10.1.0 + version: 10.1.0 + lodash: + specifier: 4.17.21 + version: 4.17.21 + vscode-languageserver-textdocument: + specifier: ^1.0.7 + version: 1.0.11 + vscode-uri: + specifier: 2.1.2 + version: 2.1.2 + devDependencies: + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + + test-packages/test-utils: + dependencies: + https-proxy-agent: + specifier: 5.0.1 + version: 5.0.1 + node-fetch: + specifier: 2.6.9 + version: 2.6.9 + proxy-from-env: + specifier: 1.1.0 + version: 1.1.0 + devDependencies: + '@types/node-fetch': + specifier: 2.5.10 + version: 2.5.10 + +packages: + + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + + /@ampproject/remapping@2.2.1: + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.22 + dev: true + + /@apidevtools/json-schema-ref-parser@9.0.9: + resolution: {integrity: sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==} + dependencies: + '@jsdevtools/ono': 7.1.3 + '@types/json-schema': 7.0.15 + call-me-maybe: 1.0.2 + js-yaml: 4.1.0 + dev: true + + /@babel/code-frame@7.23.5: + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.23.4 + chalk: 2.4.2 + dev: true + + /@babel/compat-data@7.23.5: + resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/core@7.23.7: + resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helpers': 7.23.8 + '@babel/parser': 7.23.6 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + convert-source-map: 2.0.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator@7.23.6: + resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.6 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.22 + jsesc: 2.5.2 + dev: true + + /@babel/helper-compilation-targets@7.23.6: + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.22.2 + lru-cache: 5.1.1 + semver: 6.3.1 + dev: true + + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + dev: true + + /@babel/helper-hoist-variables@7.22.5: + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + dev: true + + /@babel/helper-plugin-utils@7.22.5: + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-simple-access@7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@babel/helper-split-export-declaration@7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@babel/helper-string-parser@7.23.4: + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-option@7.23.5: + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helpers@7.23.8: + resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.7 + '@babel/types': 7.23.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight@7.23.4: + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser@7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7): + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.7 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + dev: true + + /@babel/runtime@7.23.8: + resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.1 + dev: true + + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + dev: true + + /@babel/traverse@7.23.7: + resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} + engines: {node: '>=6.9.0'} + dependencies: + '@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.6 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types@7.23.6: + resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: true + + /@bcoe/v8-coverage@0.2.3: + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + dev: true + + /@changesets/apply-release-plan@6.1.4: + resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/config': 2.3.1 + '@changesets/get-version-range-type': 0.3.2 + '@changesets/git': 2.0.0 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + detect-indent: 6.1.0 + fs-extra: 7.0.1 + lodash.startcase: 4.4.0 + outdent: 0.5.0 + prettier: 2.8.7 + resolve-from: 5.0.0 + semver: 7.5.4 + dev: true + + /@changesets/assemble-release-plan@5.2.4: + resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.1.4 + '@changesets/get-dependents-graph': 1.3.6 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + semver: 7.5.4 + dev: true + + /@changesets/changelog-git@0.1.14: + resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==} + dependencies: + '@changesets/types': 5.2.1 + dev: true + + /@changesets/cli@2.26.0: + resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} + hasBin: true + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/apply-release-plan': 6.1.4 + '@changesets/assemble-release-plan': 5.2.4 + '@changesets/changelog-git': 0.1.14 + '@changesets/config': 2.3.1 + '@changesets/errors': 0.1.4 + '@changesets/get-dependents-graph': 1.3.6 + '@changesets/get-release-plan': 3.0.17 + '@changesets/git': 2.0.0 + '@changesets/logger': 0.0.5 + '@changesets/pre': 1.0.14 + '@changesets/read': 0.5.9 + '@changesets/types': 5.2.1 + '@changesets/write': 0.2.3 + '@manypkg/get-packages': 1.1.3 + '@types/is-ci': 3.0.4 + '@types/semver': 6.2.7 + ansi-colors: 4.1.3 + chalk: 2.4.2 + enquirer: 2.4.1 + external-editor: 3.1.0 + fs-extra: 7.0.1 + human-id: 1.0.2 + is-ci: 3.0.1 + meow: 6.1.1 + outdent: 0.5.0 + p-limit: 2.3.0 + preferred-pm: 3.1.2 + resolve-from: 5.0.0 + semver: 5.7.2 + spawndamnit: 2.0.0 + term-size: 2.2.1 + tty-table: 4.2.3 + dev: true + + /@changesets/config@2.3.1: + resolution: {integrity: sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==} + dependencies: + '@changesets/errors': 0.1.4 + '@changesets/get-dependents-graph': 1.3.6 + '@changesets/logger': 0.0.5 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + micromatch: 4.0.5 + dev: true + + /@changesets/errors@0.1.4: + resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==} + dependencies: + extendable-error: 0.1.7 + dev: true + + /@changesets/get-dependents-graph@1.3.6: + resolution: {integrity: sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==} + dependencies: + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + chalk: 2.4.2 + fs-extra: 7.0.1 + semver: 7.5.4 + dev: true + + /@changesets/get-release-plan@3.0.17: + resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/assemble-release-plan': 5.2.4 + '@changesets/config': 2.3.1 + '@changesets/pre': 1.0.14 + '@changesets/read': 0.5.9 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + dev: true + + /@changesets/get-version-range-type@0.3.2: + resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} + dev: true + + /@changesets/git@2.0.0: + resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.1.4 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + is-subdir: 1.2.0 + micromatch: 4.0.5 + spawndamnit: 2.0.0 + dev: true + + /@changesets/logger@0.0.5: + resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==} + dependencies: + chalk: 2.4.2 + dev: true + + /@changesets/parse@0.3.16: + resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} + dependencies: + '@changesets/types': 5.2.1 + js-yaml: 3.14.1 + dev: true + + /@changesets/pre@1.0.14: + resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/errors': 0.1.4 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + dev: true + + /@changesets/read@0.5.9: + resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/git': 2.0.0 + '@changesets/logger': 0.0.5 + '@changesets/parse': 0.3.16 + '@changesets/types': 5.2.1 + chalk: 2.4.2 + fs-extra: 7.0.1 + p-filter: 2.1.0 + dev: true + + /@changesets/types@4.1.0: + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + dev: true + + /@changesets/types@5.2.1: + resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + dev: true + + /@changesets/write@0.2.3: + resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/types': 5.2.1 + fs-extra: 7.0.1 + human-id: 1.0.2 + prettier: 2.8.7 + dev: true + + /@chevrotain/cst-dts-gen@10.4.2: + resolution: {integrity: sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==} + dependencies: + '@chevrotain/gast': 10.4.2 + '@chevrotain/types': 10.4.2 + lodash: 4.17.21 + dev: false + + /@chevrotain/gast@10.4.2: + resolution: {integrity: sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==} + dependencies: + '@chevrotain/types': 10.4.2 + lodash: 4.17.21 + dev: false + + /@chevrotain/types@10.4.2: + resolution: {integrity: sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==} + dev: false + + /@chevrotain/utils@10.4.2: + resolution: {integrity: sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==} + dev: false + + /@colors/colors@1.6.0: + resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} + engines: {node: '>=0.1.90'} + dev: false + + /@commitlint/cli@11.0.0: + resolution: {integrity: sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==} + engines: {node: '>=v10.22.0'} + hasBin: true + dependencies: + '@babel/runtime': 7.23.8 + '@commitlint/format': 11.0.0 + '@commitlint/lint': 11.0.0 + '@commitlint/load': 11.0.0 + '@commitlint/read': 11.0.0 + chalk: 4.1.0 + core-js: 3.35.1 + get-stdin: 8.0.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 15.4.1 + dev: true + + /@commitlint/config-conventional@11.0.0: + resolution: {integrity: sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==} + engines: {node: '>=v10.22.0'} + dependencies: + conventional-changelog-conventionalcommits: 4.6.3 + dev: true + + /@commitlint/config-validator@18.5.0: + resolution: {integrity: sha512-mDAA6WQPjh9Ida8ACdInDylBQcqeUD2gBHE+dQu+B3OIHiWiSSrq4F2+wg3nDU9EzfcQSwPwYL+QbMmiW5SmLA==} + engines: {node: '>=v18'} + requiresBuild: true + dependencies: + '@commitlint/types': 18.4.4 + ajv: 8.12.0 + dev: true + optional: true + + /@commitlint/ensure@11.0.0: + resolution: {integrity: sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/types': 11.0.0 + lodash: 4.17.21 + dev: true + + /@commitlint/execute-rule@11.0.0: + resolution: {integrity: sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==} + engines: {node: '>=v10.22.0'} + dev: true + + /@commitlint/execute-rule@18.4.4: + resolution: {integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==} + engines: {node: '>=v18'} + requiresBuild: true + dev: true + optional: true + + /@commitlint/format@11.0.0: + resolution: {integrity: sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/types': 11.0.0 + chalk: 4.1.0 + dev: true + + /@commitlint/is-ignored@11.0.0: + resolution: {integrity: sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/types': 11.0.0 + semver: 7.3.2 + dev: true + + /@commitlint/lint@11.0.0: + resolution: {integrity: sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/is-ignored': 11.0.0 + '@commitlint/parse': 11.0.0 + '@commitlint/rules': 11.0.0 + '@commitlint/types': 11.0.0 + dev: true + + /@commitlint/load@11.0.0: + resolution: {integrity: sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/execute-rule': 11.0.0 + '@commitlint/resolve-extends': 11.0.0 + '@commitlint/types': 11.0.0 + chalk: 4.1.0 + cosmiconfig: 7.1.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + dev: true + + /@commitlint/load@18.5.0(@types/node@20.11.5)(typescript@4.9.4): + resolution: {integrity: sha512-vpyGgk7rzbFsU01NVwPNC/WetHFP0EwSYnQ1R833SJFHkEo+cWvqoVlw/VoZwBMoI6sF5/lwEdKzFDr1DHJ6+A==} + engines: {node: '>=v18'} + requiresBuild: true + dependencies: + '@commitlint/config-validator': 18.5.0 + '@commitlint/execute-rule': 18.4.4 + '@commitlint/resolve-extends': 18.5.0 + '@commitlint/types': 18.4.4 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@4.9.4) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.5)(cosmiconfig@8.3.6)(typescript@4.9.4) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + resolve-from: 5.0.0 + transitivePeerDependencies: + - '@types/node' + - typescript + dev: true + optional: true + + /@commitlint/message@11.0.0: + resolution: {integrity: sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==} + engines: {node: '>=v10.22.0'} + dev: true + + /@commitlint/parse@11.0.0: + resolution: {integrity: sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==} + engines: {node: '>=v10.22.0'} + dependencies: + conventional-changelog-angular: 5.0.13 + conventional-commits-parser: 3.2.4 + dev: true + + /@commitlint/read@11.0.0: + resolution: {integrity: sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/top-level': 11.0.0 + fs-extra: 9.1.0 + git-raw-commits: 2.0.11 + dev: true + + /@commitlint/resolve-extends@11.0.0: + resolution: {integrity: sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==} + engines: {node: '>=v10.22.0'} + dependencies: + import-fresh: 3.3.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/resolve-extends@18.5.0: + resolution: {integrity: sha512-OxCYOMnlkOEEIkwTaRiFjHyuWBq962WBZQVHfMHej8tr3d+SfjznvqZhPmW8/SuqtfmGEiJPGWUNOxgwH+O0MA==} + engines: {node: '>=v18'} + requiresBuild: true + dependencies: + '@commitlint/config-validator': 18.5.0 + '@commitlint/types': 18.4.4 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + optional: true + + /@commitlint/rules@11.0.0: + resolution: {integrity: sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==} + engines: {node: '>=v10.22.0'} + dependencies: + '@commitlint/ensure': 11.0.0 + '@commitlint/message': 11.0.0 + '@commitlint/to-lines': 11.0.0 + '@commitlint/types': 11.0.0 + dev: true + + /@commitlint/to-lines@11.0.0: + resolution: {integrity: sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==} + engines: {node: '>=v10.22.0'} + dev: true + + /@commitlint/top-level@11.0.0: + resolution: {integrity: sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==} + engines: {node: '>=v10.22.0'} + dependencies: + find-up: 5.0.0 + dev: true + + /@commitlint/types@11.0.0: + resolution: {integrity: sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==} + engines: {node: '>=v10.22.0'} + dev: true + + /@commitlint/types@18.4.4: + resolution: {integrity: sha512-/FykLtodD8gKs3+VNkAUwofu4LBHankclj+I8fB2jTRvG6PV7k/OUt4P+VbM7ip853qS4F0g7Z6hLNa6JeMcAQ==} + engines: {node: '>=v18'} + requiresBuild: true + dependencies: + chalk: 4.1.2 + dev: true + optional: true + + /@dabh/diagnostics@2.0.3: + resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} + dependencies: + colorspace: 1.1.4 + enabled: 2.0.0 + kuler: 2.0.0 + dev: false + + /@esbuild/android-arm64@0.17.12: + resolution: {integrity: sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.17.12: + resolution: {integrity: sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.17.12: + resolution: {integrity: sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.17.12: + resolution: {integrity: sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.17.12: + resolution: {integrity: sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.17.12: + resolution: {integrity: sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.17.12: + resolution: {integrity: sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.17.12: + resolution: {integrity: sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.17.12: + resolution: {integrity: sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.17.12: + resolution: {integrity: sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.17.12: + resolution: {integrity: sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.17.12: + resolution: {integrity: sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.17.12: + resolution: {integrity: sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.17.12: + resolution: {integrity: sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.17.12: + resolution: {integrity: sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.17.12: + resolution: {integrity: sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.17.12: + resolution: {integrity: sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.17.12: + resolution: {integrity: sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.17.12: + resolution: {integrity: sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.17.12: + resolution: {integrity: sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.17.12: + resolution: {integrity: sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.17.12: + resolution: {integrity: sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint/eslintrc@0.3.0: + resolution: {integrity: sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 7.3.1 + globals: 12.4.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.14.1 + lodash: 4.17.21 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@gar/promisify@1.1.3: + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + dev: true + + /@hutson/parse-repository-url@3.0.2: + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + dev: true + + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + dev: true + + /@istanbuljs/load-nyc-config@1.1.0: + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + dev: true + + /@istanbuljs/schema@0.1.3: + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + dev: true + + /@jest/console@29.7.0: + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + dev: true + + /@jest/core@29.7.0(ts-node@8.5.2): + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + 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 + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + 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.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + dev: true + + /@jest/environment@29.7.0: + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + jest-mock: 29.7.0 + dev: true + + /@jest/expect-utils@29.7.0: + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + jest-get-type: 29.6.3 + dev: true + + /@jest/expect@29.7.0: + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/fake-timers@29.7.0: + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.11.5 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + dev: true + + /@jest/globals@29.7.0: + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters@29.7.0: + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + 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 + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.22 + '@types/node': 20.11.5 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.1.6 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.1 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.6 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/schemas@29.6.3: + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.27.8 + dev: true + + /@jest/source-map@29.6.3: + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jridgewell/trace-mapping': 0.3.22 + callsites: 3.1.0 + graceful-fs: 4.2.11 + dev: true + + /@jest/test-result@29.7.0: + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + dev: true + + /@jest/test-sequencer@29.7.0: + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + dev: true + + /@jest/transform@29.7.0: + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/core': 7.23.7 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.22 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/types@25.5.0: + resolution: {integrity: sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==} + engines: {node: '>= 8.3'} + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 1.1.2 + '@types/yargs': 15.0.19 + chalk: 3.0.0 + dev: true + + /@jest/types@29.6.3: + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.11.5 + '@types/yargs': 17.0.32 + chalk: 4.1.2 + dev: true + + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.22 + dev: true + + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/source-map@0.3.5: + resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.22 + dev: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + dev: true + + /@jridgewell/trace-mapping@0.3.22: + resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + + /@jsdevtools/ono@7.1.3: + resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} + dev: true + + /@kwsites/file-exists@1.1.1: + resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@kwsites/promise-deferred@1.1.1: + resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} + dev: true + + /@lerna/child-process@7.4.2: + resolution: {integrity: sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==} + engines: {node: '>=16.0.0'} + dependencies: + chalk: 4.1.0 + execa: 5.0.0 + strong-log-transformer: 2.1.0 + dev: true + + /@lerna/create@7.4.2(typescript@4.9.4): + resolution: {integrity: sha512-1wplFbQ52K8E/unnqB0Tq39Z4e+NEoNrpovEnl6GpsTUrC6WDp8+w0Le2uCBV0hXyemxChduCkLz4/y1H1wTeg==} + engines: {node: '>=16.0.0'} + dependencies: + '@lerna/child-process': 7.4.2 + '@npmcli/run-script': 6.0.2 + '@nx/devkit': 16.10.0(nx@16.10.0) + '@octokit/plugin-enterprise-rest': 6.0.1 + '@octokit/rest': 19.0.11 + byte-size: 8.1.1 + chalk: 4.1.0 + clone-deep: 4.0.1 + cmd-shim: 6.0.1 + columnify: 1.6.0 + conventional-changelog-core: 5.0.1 + conventional-recommended-bump: 7.0.1 + cosmiconfig: 8.3.6(typescript@4.9.4) + dedent: 0.7.0 + execa: 5.0.0 + fs-extra: 11.2.0 + get-stream: 6.0.0 + git-url-parse: 13.1.0 + glob-parent: 5.1.2 + globby: 11.1.0 + graceful-fs: 4.2.11 + has-unicode: 2.0.1 + ini: 1.3.8 + init-package-json: 5.0.0 + inquirer: 8.2.6 + is-ci: 3.0.1 + is-stream: 2.0.0 + js-yaml: 4.1.0 + libnpmpublish: 7.3.0 + load-json-file: 6.2.0 + lodash: 4.17.21 + make-dir: 4.0.0 + minimatch: 3.0.5 + multimatch: 5.0.0 + node-fetch: 2.6.7 + npm-package-arg: 8.1.1 + npm-packlist: 5.1.1 + npm-registry-fetch: 14.0.5 + npmlog: 6.0.2 + nx: 16.10.0 + p-map: 4.0.0 + p-map-series: 2.1.0 + p-queue: 6.6.2 + p-reduce: 2.1.0 + pacote: 15.2.0 + pify: 5.0.0 + read-cmd-shim: 4.0.0 + read-package-json: 6.0.4 + resolve-from: 5.0.0 + rimraf: 4.4.1 + semver: 7.3.7 + signal-exit: 3.0.7 + slash: 3.0.0 + ssri: 9.0.1 + strong-log-transformer: 2.1.0 + tar: 6.1.11 + temp-dir: 1.0.0 + upath: 2.0.1 + uuid: 9.0.1 + validate-npm-package-license: 3.0.4 + validate-npm-package-name: 5.0.0 + write-file-atomic: 5.0.1 + write-pkg: 4.0.0 + yargs: 16.2.0 + yargs-parser: 20.2.4 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - bluebird + - debug + - encoding + - supports-color + - typescript + dev: true + + /@manypkg/find-root@1.1.0: + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + dependencies: + '@babel/runtime': 7.23.8 + '@types/node': 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 + dev: true + + /@manypkg/get-packages@1.1.3: + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + dependencies: + '@babel/runtime': 7.23.8 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.16.0 + + /@npmcli/fs@2.1.2: + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.3.7 + dev: true + + /@npmcli/fs@3.1.0: + resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + semver: 7.3.7 + dev: true + + /@npmcli/git@4.1.0: + resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@npmcli/promise-spawn': 6.0.2 + lru-cache: 7.18.3 + npm-pick-manifest: 8.0.2 + proc-log: 3.0.0 + promise-inflight: 1.0.1 + promise-retry: 2.0.1 + semver: 7.3.7 + which: 3.0.1 + transitivePeerDependencies: + - bluebird + dev: true + + /@npmcli/installed-package-contents@2.0.2: + resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + dependencies: + npm-bundled: 3.0.0 + npm-normalize-package-bin: 3.0.1 + dev: true + + /@npmcli/move-file@2.0.1: + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + dev: true + + /@npmcli/node-gyp@3.0.0: + resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /@npmcli/promise-spawn@6.0.2: + resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + which: 3.0.1 + dev: true + + /@npmcli/run-script@6.0.2: + resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@npmcli/node-gyp': 3.0.0 + '@npmcli/promise-spawn': 6.0.2 + node-gyp: 9.4.1 + read-package-json-fast: 3.0.2 + which: 3.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /@nrwl/devkit@16.10.0(nx@16.10.0): + resolution: {integrity: sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==} + dependencies: + '@nx/devkit': 16.10.0(nx@16.10.0) + transitivePeerDependencies: + - nx + dev: true + + /@nrwl/tao@16.10.0: + resolution: {integrity: sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==} + hasBin: true + dependencies: + nx: 16.10.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: true + + /@nx/devkit@16.10.0(nx@16.10.0): + resolution: {integrity: sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==} + peerDependencies: + nx: '>= 15 <= 17' + dependencies: + '@nrwl/devkit': 16.10.0(nx@16.10.0) + ejs: 3.1.9 + enquirer: 2.3.6 + ignore: 5.3.0 + nx: 16.10.0 + semver: 7.5.3 + tmp: 0.2.1 + tslib: 2.6.2 + dev: true + + /@nx/nx-darwin-arm64@16.10.0: + resolution: {integrity: sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-darwin-x64@16.10.0: + resolution: {integrity: sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-freebsd-x64@16.10.0: + resolution: {integrity: sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-linux-arm-gnueabihf@16.10.0: + resolution: {integrity: sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-linux-arm64-gnu@16.10.0: + resolution: {integrity: sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-linux-arm64-musl@16.10.0: + resolution: {integrity: sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-linux-x64-gnu@16.10.0: + resolution: {integrity: sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-linux-x64-musl@16.10.0: + resolution: {integrity: sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-win32-arm64-msvc@16.10.0: + resolution: {integrity: sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@nx/nx-win32-x64-msvc@16.10.0: + resolution: {integrity: sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@octokit/auth-token@3.0.4: + resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} + engines: {node: '>= 14'} + dev: true + + /@octokit/core@4.2.4: + resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} + engines: {node: '>= 14'} + dependencies: + '@octokit/auth-token': 3.0.4 + '@octokit/graphql': 5.0.6 + '@octokit/request': 6.2.8 + '@octokit/request-error': 3.0.3 + '@octokit/types': 9.3.2 + before-after-hook: 2.2.3 + universal-user-agent: 6.0.1 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/endpoint@7.0.6: + resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} + engines: {node: '>= 14'} + dependencies: + '@octokit/types': 9.3.2 + is-plain-object: 5.0.0 + universal-user-agent: 6.0.1 + dev: true + + /@octokit/graphql@5.0.6: + resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} + engines: {node: '>= 14'} + dependencies: + '@octokit/request': 6.2.8 + '@octokit/types': 9.3.2 + universal-user-agent: 6.0.1 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/openapi-types@18.1.1: + resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} + dev: true + + /@octokit/plugin-enterprise-rest@6.0.1: + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + dev: true + + /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): + resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=4' + dependencies: + '@octokit/core': 4.2.4 + '@octokit/tsconfig': 1.0.2 + '@octokit/types': 9.3.2 + dev: true + + /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' + dependencies: + '@octokit/core': 4.2.4 + dev: true + + /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): + resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=3' + dependencies: + '@octokit/core': 4.2.4 + '@octokit/types': 10.0.0 + dev: true + + /@octokit/request-error@3.0.3: + resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} + engines: {node: '>= 14'} + dependencies: + '@octokit/types': 9.3.2 + deprecation: 2.3.1 + once: 1.4.0 + dev: true + + /@octokit/request@6.2.8: + resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} + engines: {node: '>= 14'} + dependencies: + '@octokit/endpoint': 7.0.6 + '@octokit/request-error': 3.0.3 + '@octokit/types': 9.3.2 + is-plain-object: 5.0.0 + node-fetch: 2.6.9 + universal-user-agent: 6.0.1 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/rest@19.0.11: + resolution: {integrity: sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==} + engines: {node: '>= 14'} + dependencies: + '@octokit/core': 4.2.4 + '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) + '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/tsconfig@1.0.2: + resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} + dev: true + + /@octokit/types@10.0.0: + resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} + dependencies: + '@octokit/openapi-types': 18.1.1 + dev: true + + /@octokit/types@9.3.2: + resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} + dependencies: + '@octokit/openapi-types': 18.1.1 + dev: true + + /@parcel/watcher@2.0.4: + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + requiresBuild: true + dependencies: + node-addon-api: 3.2.1 + node-gyp-build: 4.8.0 + dev: true + + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true + dev: true + optional: true + + /@prettier/plugin-xml@2.2.0: + resolution: {integrity: sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==} + dependencies: + '@xml-tools/parser': 1.0.11 + prettier: 2.8.7 + dev: false + + /@sap-ux/annotation-converter@0.5.20: + resolution: {integrity: sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==} + dev: false + + /@sap-ux/edmx-parser@0.5.13: + resolution: {integrity: sha512-V58Iul9fSSMjWs1x7CimGyfnojnYTKcutGstRN4gmz6t4ijXsXQrTMzVetDbZ3EA2UznZtzreVF/8/gXC5MK3A==} + dependencies: + xml-js: 1.6.11 + dev: false + + /@sap-ux/project-access@1.9.1: + resolution: {integrity: sha512-ObLlzem77Vpe7C6I8UimPPQW7LrSq4zQ2PaYfUaLqamrG2cu9Knl+/xRBZz51ZbHWbN/2I2cdZRBfG695PewXw==} + engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=6.26.1 < 7.0.0 || >=7.1.0'} + dependencies: + '@sap-ux/ui5-config': 0.18.2 + findit2: 2.2.3 + mem-fs: 2.1.0 + mem-fs-editor: 9.4.0(mem-fs@2.1.0) + dev: false + + /@sap-ux/ui5-config@0.18.2: + resolution: {integrity: sha512-s/UsykJXbQIMmpcNjI2ChAIYBnQvnjJlp5n5QpT4XRHHwstExz2YCWz2vThXuF1GmwsCMzSjmhF+zTmGbTJ11w==} + engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=6.26.1 < 7.0.0 || >=7.1.0'} + dependencies: + '@sap-ux/yaml': 0.13.7 + lodash: 4.17.21 + semver: 7.5.3 + dev: false + + /@sap-ux/vocabularies-types@0.6.8: + resolution: {integrity: sha512-58b1/E9hxSsIit9NMQ9oXCYNUaOT7kbQU1OKhAPVp3Pg2BMbkRo5p1SX6BSan4XmONUpao7yRUVZEG0dspR5qg==} + engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=7.3.0'} + dev: true + + /@sap-ux/vocabularies-types@0.7.4: + resolution: {integrity: sha512-JC2s7P7EOYvnubxqDIJYdZXA/aNvK78XqvB1sMyI4z+rf/mgTTID7mIf/2J3rSwHw+GjVrDK+UvSX3vJhomKew==} + engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=7.3.0'} + dev: true + + /@sap-ux/yaml@0.13.7: + resolution: {integrity: sha512-4638D6TyaBA43lnhWtkXVM2xFwgDh3u8DEsTmCEvvbh6SQsE09t/eheRSoBD1ryZVG9NmmasY2tMgy3JxEPV5A==} + engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=6.26.1 < 7.0.0 || >=7.1.0'} + dependencies: + lodash: 4.17.21 + yaml: 2.2.2 + dev: false + + /@sap/swa-for-sapbas-vsx@1.1.9: + resolution: {integrity: sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==} + deprecated: This version is obsolete. Please upgrade to version 1.1.13 or above. + dependencies: + esm: 3.2.25 + lodash: 4.17.20 + matomo-tracker: 2.2.2 + dev: false + + /@sigstore/bundle@1.1.0: + resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@sigstore/protobuf-specs': 0.2.1 + dev: true + + /@sigstore/protobuf-specs@0.2.1: + resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /@sigstore/sign@1.0.0: + resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@sigstore/bundle': 1.1.0 + '@sigstore/protobuf-specs': 0.2.1 + make-fetch-happen: 11.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@sigstore/tuf@1.0.3: + resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@sigstore/protobuf-specs': 0.2.1 + tuf-js: 1.1.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + dev: true + + /@sinonjs/commons@3.0.1: + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + dependencies: + type-detect: 4.0.8 + dev: true + + /@sinonjs/fake-timers@10.3.0: + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + dependencies: + '@sinonjs/commons': 3.0.1 + dev: true + + /@tootallnate/once@1.1.2: + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + dev: true + + /@tootallnate/once@2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true + + /@tufjs/canonical-json@1.0.0: + resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /@tufjs/models@1.0.4: + resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@tufjs/canonical-json': 1.0.0 + minimatch: 9.0.3 + dev: true + + /@types/babel__core@7.20.5: + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + dependencies: + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.5 + dev: true + + /@types/babel__generator@7.6.8: + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@types/babel__template@7.4.4: + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + dependencies: + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 + dev: true + + /@types/babel__traverse@7.20.5: + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@types/chai@4.2.14: + resolution: {integrity: sha512-G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ==} + dev: true + + /@types/deep-equal-in-any-order@1.0.1: + resolution: {integrity: sha512-hUWUUE53WjKfcCncSmWmNXVNNT+0Iz7gYFnov3zdCXrX3Thxp1Cnmfd5LwWOeCVUV5LhpiFgS05vaAG72doo9w==} + dev: true + + /@types/deep-freeze-strict@1.1.0: + resolution: {integrity: sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==} + dev: true + + /@types/eslint-scope@3.7.7: + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + dependencies: + '@types/eslint': 8.56.2 + '@types/estree': 1.0.5 + dev: true + + /@types/eslint@8.56.2: + resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==} + dependencies: + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 + dev: true + + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + dev: true + + /@types/fs-extra@9.0.11: + resolution: {integrity: sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==} + dependencies: + '@types/node': 20.11.5 + dev: true + + /@types/glob@8.1.0: + resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 20.11.5 + dev: true + + /@types/graceful-fs@4.1.9: + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + dependencies: + '@types/node': 20.11.5 + dev: true + + /@types/is-ci@3.0.4: + resolution: {integrity: sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==} + dependencies: + ci-info: 3.9.0 + dev: true + + /@types/istanbul-lib-coverage@2.0.6: + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + dev: true + + /@types/istanbul-lib-report@3.0.3: + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + dev: true + + /@types/istanbul-reports@1.1.2: + resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-lib-report': 3.0.3 + dev: true + + /@types/istanbul-reports@3.0.4: + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + dependencies: + '@types/istanbul-lib-report': 3.0.3 + dev: true + + /@types/jest-specific-snapshot@0.5.5: + resolution: {integrity: sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==} + dependencies: + '@types/jest': 29.2.6 + dev: true + + /@types/jest@29.2.6: + resolution: {integrity: sha512-XEUC/Tgw3uMh6Ho8GkUtQ2lPhY5Fmgyp3TdlkTJs1W9VgNxs+Ow/x3Elh8lHQKqCbZL0AubQuqWjHVT033Hhrw==} + dependencies: + expect: 29.7.0 + pretty-format: 29.7.0 + dev: true + + /@types/js-yaml@4.0.5: + resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} + dev: true + + /@types/jsdom@20.0.1: + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + dependencies: + '@types/node': 20.11.5 + '@types/tough-cookie': 4.0.5 + parse5: 7.1.2 + dev: true + + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + dev: true + + /@types/klaw-sync@6.0.0: + resolution: {integrity: sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==} + dependencies: + '@types/node': 20.11.5 + dev: true + + /@types/lodash@4.14.166: + resolution: {integrity: sha512-A3YT/c1oTlyvvW/GQqG86EyqWNrT/tisOIh2mW3YCgcx71TNjiTZA3zYZWA5BCmtsOTXjhliy4c4yEkErw6njA==} + dev: true + + /@types/lodash@4.14.168: + resolution: {integrity: sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==} + dev: true + + /@types/minimatch@3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + + /@types/minimatch@5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + dev: true + + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + dev: true + + /@types/node-fetch@2.5.10: + resolution: {integrity: sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==} + dependencies: + '@types/node': 20.11.5 + form-data: 3.0.1 + dev: true + + /@types/node@12.20.55: + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + dev: true + + /@types/node@20.11.5: + resolution: {integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==} + dependencies: + undici-types: 5.26.5 + dev: true + + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + dev: true + + /@types/parse-json@4.0.2: + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + dev: true + + /@types/prettier@1.19.1: + resolution: {integrity: sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==} + dev: true + + /@types/prettier@2.7.3: + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + dev: true + + /@types/rimraf@3.0.0: + resolution: {integrity: sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==} + dependencies: + '@types/glob': 8.1.0 + '@types/node': 20.11.5 + dev: true + + /@types/semver@6.2.7: + resolution: {integrity: sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==} + dev: true + + /@types/semver@7.3.12: + resolution: {integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==} + dev: true + + /@types/sinon-chai@3.2.5: + resolution: {integrity: sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==} + dependencies: + '@types/chai': 4.2.14 + '@types/sinon': 9.0.10 + dev: true + + /@types/sinon@9.0.10: + resolution: {integrity: sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==} + dependencies: + '@types/sinonjs__fake-timers': 8.1.5 + dev: true + + /@types/sinonjs__fake-timers@8.1.5: + resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==} + dev: true + + /@types/stack-utils@1.0.1: + resolution: {integrity: sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==} + dev: true + + /@types/stack-utils@2.0.3: + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + dev: true + + /@types/tmp@0.2.0: + resolution: {integrity: sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==} + dev: true + + /@types/tough-cookie@4.0.5: + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + dev: true + + /@types/triple-beam@1.3.5: + resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} + dev: false + + /@types/vscode@1.47.0: + resolution: {integrity: sha512-nJA37ykkz9FYA0ZOQUSc3OZnhuzEW2vUhUEo4MiduUo82jGwwcLfyvmgd/Q7b0WrZAAceojGhZybg319L24bTA==} + dev: true + + /@types/yargs-parser@21.0.3: + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + dev: true + + /@types/yargs@15.0.19: + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + dependencies: + '@types/yargs-parser': 21.0.3 + dev: true + + /@types/yargs@17.0.32: + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + dependencies: + '@types/yargs-parser': 21.0.3 + dev: true + + /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.14.0)(eslint@7.18.0)(typescript@4.9.4): + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.18.0)(typescript@4.9.4) + '@typescript-eslint/parser': 4.14.0(eslint@7.18.0)(typescript@4.9.4) + '@typescript-eslint/scope-manager': 4.33.0 + debug: 4.3.4 + eslint: 7.18.0 + functional-red-black-tree: 1.0.1 + ignore: 5.3.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.9.4) + typescript: 4.9.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/experimental-utils@4.33.0(eslint@7.18.0)(typescript@4.9.4): + resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + dependencies: + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.4) + eslint: 7.18.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.18.0) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/parser@4.14.0(eslint@7.18.0)(typescript@4.9.4): + resolution: {integrity: sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 4.14.0 + '@typescript-eslint/types': 4.14.0 + '@typescript-eslint/typescript-estree': 4.14.0(typescript@4.9.4) + debug: 4.3.4 + eslint: 7.18.0 + typescript: 4.9.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@4.14.0: + resolution: {integrity: sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.14.0 + '@typescript-eslint/visitor-keys': 4.14.0 + dev: true + + /@typescript-eslint/scope-manager@4.33.0: + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + dev: true + + /@typescript-eslint/types@4.14.0: + resolution: {integrity: sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dev: true + + /@typescript-eslint/types@4.33.0: + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dev: true + + /@typescript-eslint/typescript-estree@4.14.0(typescript@4.9.4): + resolution: {integrity: sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 4.14.0 + '@typescript-eslint/visitor-keys': 4.14.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + lodash: 4.17.21 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.9.4) + typescript: 4.9.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.4): + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.9.4) + typescript: 4.9.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/visitor-keys@4.14.0: + resolution: {integrity: sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.14.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /@typescript-eslint/visitor-keys@4.33.0: + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.33.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /@vscode-logging/logger@1.2.2: + resolution: {integrity: sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA==} + dependencies: + '@vscode-logging/types': 0.1.4 + fast-safe-stringify: 2.0.7 + fs-extra: 8.1.0 + lodash: 4.17.20 + stacktrace-js: 2.0.2 + streamroller: 2.2.3 + triple-beam: 1.3.0 + winston: 3.3.3 + winston-transport: 4.3.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@vscode-logging/types@0.1.4: + resolution: {integrity: sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==} + + /@webassemblyjs/ast@1.11.6: + resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + dependencies: + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + dev: true + + /@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + dev: true + + /@webassemblyjs/helper-api-error@1.11.6: + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + dev: true + + /@webassemblyjs/helper-buffer@1.11.6: + resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + dev: true + + /@webassemblyjs/helper-numbers@1.11.6: + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 + dev: true + + /@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + dev: true + + /@webassemblyjs/helper-wasm-section@1.11.6: + resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + dev: true + + /@webassemblyjs/ieee754@1.11.6: + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + dependencies: + '@xtuc/ieee754': 1.2.0 + dev: true + + /@webassemblyjs/leb128@1.11.6: + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + dependencies: + '@xtuc/long': 4.2.2 + dev: true + + /@webassemblyjs/utf8@1.11.6: + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + dev: true + + /@webassemblyjs/wasm-edit@1.11.6: + resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-opt': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + '@webassemblyjs/wast-printer': 1.11.6 + dev: true + + /@webassemblyjs/wasm-gen@1.11.6: + resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 + dev: true + + /@webassemblyjs/wasm-opt@1.11.6: + resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + dev: true + + /@webassemblyjs/wasm-parser@1.11.6: + resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 + dev: true + + /@webassemblyjs/wast-printer@1.11.6: + resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@xtuc/long': 4.2.2 + dev: true + + /@xml-tools/ast-position@2.0.2: + resolution: {integrity: sha512-SuZrlXPJICF/mtcjPe8Yq5gTX6XaLyWACQyeVG6X+dMuHWiZ5ckLvlMXs5SZg9Xxw21d3Q/P1MFyM33HQPzkNg==} + dependencies: + '@xml-tools/ast': 5.0.0 + dev: false + + /@xml-tools/ast@5.0.0: + resolution: {integrity: sha512-NLMBbvW1S6bG+pHvPfQeM3ci+le9LexuA4E+obqoRpTWqlJSQGiPKxq8p+HauQmdlF4UC9GUIGsa+9FNFefKyg==} + dependencies: + '@xml-tools/common': 0.1.2 + '@xml-tools/parser': 1.0.7 + lodash: 4.17.15 + + /@xml-tools/common@0.1.2: + resolution: {integrity: sha512-5U0CbB3u5WDRKX+oPjHEm6ZkJk8z5LZMpEI6uzBzcnP+3dIxahCF90lhwljQ/rPVSLMLxLfv72xru6RbePeLWA==} + dependencies: + lodash: 4.17.15 + + /@xml-tools/content-assist@3.1.7: + resolution: {integrity: sha512-qkOSsQt3arJANrJnypXmLzXaCeFX0qNCZDvrNue0LDhWP+MbGMJO50Vh5FLYCQUCzDFHIzi8T53abCkbO1e3ug==} + dependencies: + '@xml-tools/common': 0.1.2 + '@xml-tools/parser': 1.0.7 + lodash: 4.17.15 + dev: false + + /@xml-tools/parser@1.0.11: + resolution: {integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==} + dependencies: + chevrotain: 7.1.1 + dev: false + + /@xml-tools/parser@1.0.7: + resolution: {integrity: sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ==} + dependencies: + chevrotain: 7.0.1 + + /@xtuc/ieee754@1.2.0: + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + dev: true + + /@xtuc/long@4.2.2: + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + dev: true + + /@yarnpkg/lockfile@1.1.0: + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + dev: true + + /@yarnpkg/parsers@3.0.0-rc.46: + resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} + engines: {node: '>=14.15.0'} + dependencies: + js-yaml: 3.14.1 + tslib: 2.6.2 + dev: true + + /@zkochan/js-yaml@0.0.6: + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + dev: true + + /abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true + + /acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + dependencies: + acorn: 8.11.3 + acorn-walk: 8.3.2 + dev: true + + /acorn-import-assertions@1.9.0(acorn@8.11.3): + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + dependencies: + acorn: 8.11.3 + dev: true + + /acorn-jsx@5.3.2(acorn@7.4.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 7.4.1 + dev: true + + /acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /add-stream@1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + dev: true + + /agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + /agentkeepalive@4.5.0: + resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + engines: {node: '>= 8.0.0'} + dependencies: + humanize-ms: 1.2.1 + dev: true + + /aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + dev: true + + /ajv-keywords@3.5.2(ajv@6.12.6): + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + dependencies: + ajv: 6.12.6 + dev: true + + /ajv@6.12.3: + resolution: {integrity: sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + dev: true + + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + + /ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + dev: true + + /ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + dev: true + + /any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + dev: true + + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /append-transform@2.0.0: + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} + dependencies: + default-require-extensions: 3.0.1 + dev: true + + /aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + dev: true + + /archy@1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + dev: true + + /are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.2 + dev: true + + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + dev: true + + /argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + /array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + dependencies: + call-bind: 1.0.5 + is-array-buffer: 3.0.2 + dev: true + + /array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + + /array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + /asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /assert-never@1.2.1: + resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} + dev: false + + /assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + dev: true + + /assertion-error@1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + dev: true + + /astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true + + /async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true + + /at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + dev: true + + /available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + + /aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true + + /aws4@1.12.0: + resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + dev: true + + /axios@1.6.5: + resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==} + dependencies: + follow-redirects: 1.15.5 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: true + + /azure-devops-node-api@7.2.0: + resolution: {integrity: sha512-pMfGJ6gAQ7LRKTHgiRF+8iaUUeGAI0c8puLaqHLc7B8AR7W6GJLozK9RFeUHFjEGybC9/EB3r67WPd7e46zQ8w==} + dependencies: + os: 0.1.1 + tunnel: 0.0.4 + typed-rest-client: 1.2.0 + underscore: 1.8.3 + dev: true + + /babel-jest@29.7.0(@babel/core@7.23.7): + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.23.7 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.23.7) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + dependencies: + '@babel/helper-plugin-utils': 7.22.5 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 + dev: true + + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7): + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) + dev: true + + /babel-preset-jest@29.6.3(@babel/core@7.23.7): + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.7 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7) + dev: true + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true + + /bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + dependencies: + tweetnacl: 0.14.5 + dev: true + + /before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: true + + /better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + dependencies: + is-windows: 1.0.2 + dev: true + + /big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} + dev: true + + /big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + dev: true + + /binary@0.3.0: + resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==} + dependencies: + buffers: 0.1.1 + chainsaw: 0.1.0 + dev: true + + /binaryextensions@4.19.0: + resolution: {integrity: sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==} + engines: {node: '>=0.8'} + dev: false + + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: true + + /bluebird@3.4.7: + resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==} + dev: true + + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + + /breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + dependencies: + wcwidth: 1.0.1 + dev: true + + /browser-resolve@1.11.3: + resolution: {integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==} + dependencies: + resolve: 1.1.7 + dev: true + + /browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001579 + electron-to-chromium: 1.4.643 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) + dev: true + + /bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} + dependencies: + fast-json-stable-stringify: 2.1.0 + dev: true + + /bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + dependencies: + node-int64: 0.4.0 + dev: true + + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true + + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true + + /buffer-indexof-polyfill@1.0.2: + resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==} + engines: {node: '>=0.10'} + dev: true + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /buffers@0.1.1: + resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==} + engines: {node: '>=0.2.0'} + dev: true + + /builtins@1.0.3: + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + dev: true + + /builtins@5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + dependencies: + semver: 7.3.7 + dev: true + + /byte-size@8.1.1: + resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==} + engines: {node: '>=12.17'} + dev: true + + /cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + '@npmcli/fs': 2.1.2 + '@npmcli/move-file': 2.0.1 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 8.1.0 + infer-owner: 1.0.4 + lru-cache: 7.18.3 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + mkdirp: 1.0.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + rimraf: 3.0.2 + ssri: 9.0.1 + tar: 6.1.11 + unique-filename: 2.0.1 + transitivePeerDependencies: + - bluebird + dev: true + + /cacache@17.1.4: + resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@npmcli/fs': 3.1.0 + fs-minipass: 3.0.3 + glob: 10.3.10 + lru-cache: 7.18.3 + minipass: 7.0.4 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + p-map: 4.0.0 + ssri: 10.0.5 + tar: 6.1.11 + unique-filename: 3.0.0 + dev: true + + /cachedir@2.3.0: + resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} + engines: {node: '>=6'} + dev: true + + /caching-transform@4.0.0: + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} + dependencies: + hasha: 5.2.2 + make-dir: 3.1.0 + package-hash: 4.0.0 + write-file-atomic: 3.0.3 + dev: true + + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.2.0 + dev: true + + /call-me-maybe@1.0.2: + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /caniuse-lite@1.0.30001579: + resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} + dev: true + + /caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true + + /chai@4.2.0: + resolution: {integrity: sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==} + engines: {node: '>=4'} + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.3 + deep-eql: 3.0.1 + get-func-name: 2.0.2 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: true + + /chainsaw@0.1.0: + resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==} + dependencies: + traverse: 0.3.9 + dev: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk@4.1.0: + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + /char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + dev: true + + /chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true + + /check-error@1.0.3: + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + dependencies: + get-func-name: 2.0.2 + dev: true + + /cheerio-select@2.1.0: + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + dependencies: + boolbase: 1.0.0 + css-select: 5.1.0 + css-what: 6.1.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + dev: true + + /cheerio@1.0.0-rc.12: + resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} + engines: {node: '>= 6'} + dependencies: + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.1.0 + htmlparser2: 8.0.2 + parse5: 7.1.2 + parse5-htmlparser2-tree-adapter: 7.0.0 + dev: true + + /chevrotain@10.4.2: + resolution: {integrity: sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg==} + dependencies: + '@chevrotain/cst-dts-gen': 10.4.2 + '@chevrotain/gast': 10.4.2 + '@chevrotain/types': 10.4.2 + '@chevrotain/utils': 10.4.2 + lodash: 4.17.21 + regexp-to-ast: 0.5.0 + dev: false + + /chevrotain@7.0.1: + resolution: {integrity: sha512-B/44jrdw5GAzy483LEeVSgXSX0qOYM8lUd3l5+yf6Vl6OQjEUCm2BUiYbHRCIK6xCEvCLAFe1kj8uyV6+zdaVw==} + dependencies: + regexp-to-ast: 0.5.0 + + /chevrotain@7.1.1: + resolution: {integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==} + dependencies: + regexp-to-ast: 0.5.0 + dev: false + + /chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + dev: true + + /chrome-trace-event@1.0.3: + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + engines: {node: '>=6.0'} + dev: true + + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + dev: true + + /cjs-module-lexer@1.2.3: + resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} + dev: true + + /clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + dev: true + + /cli-color@2.0.3: + resolution: {integrity: sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==} + engines: {node: '>=0.10'} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-iterator: 2.0.3 + memoizee: 0.4.15 + timers-ext: 0.1.7 + dev: true + + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + dev: true + + /cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + dev: true + + /cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} + dependencies: + slice-ansi: 3.0.0 + string-width: 4.2.3 + dev: true + + /cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true + + /cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + dev: true + + /cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /clone-buffer@1.0.0: + resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} + engines: {node: '>= 0.10'} + dev: false + + /clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + dev: true + + /clone-stats@1.0.0: + resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} + dev: false + + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true + + /clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + dev: false + + /cloneable-readable@1.1.3: + resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==} + dependencies: + inherits: 2.0.4 + process-nextick-args: 2.0.1 + readable-stream: 2.3.8 + dev: false + + /cmd-shim@6.0.1: + resolution: {integrity: sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + dev: true + + /collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + dev: true + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + /color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + dev: false + + /color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + dev: true + + /color@3.2.1: + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} + dependencies: + color-convert: 1.9.3 + color-string: 1.9.1 + dev: false + + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + dev: true + + /colorspace@1.1.4: + resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} + dependencies: + color: 3.2.1 + text-hex: 1.0.0 + dev: false + + /columnify@1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} + dependencies: + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: true + + /commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + dev: true + + /commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + dev: true + + /commitizen@4.3.0(@types/node@20.11.5)(typescript@4.9.4): + resolution: {integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==} + engines: {node: '>= 12'} + hasBin: true + dependencies: + cachedir: 2.3.0 + cz-conventional-changelog: 3.3.0(@types/node@20.11.5)(typescript@4.9.4) + dedent: 0.7.0 + detect-indent: 6.1.0 + find-node-modules: 2.1.3 + find-root: 1.1.0 + fs-extra: 9.1.0 + glob: 7.2.3 + inquirer: 8.2.5 + is-utf8: 0.2.1 + lodash: 4.17.21 + minimist: 1.2.7 + strip-bom: 4.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - '@types/node' + - typescript + dev: true + + /commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + /compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + /concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 3.6.2 + typedarray: 0.0.6 + dev: true + + /console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + dev: true + + /conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} + dependencies: + compare-func: 2.0.0 + dev: true + + /conventional-changelog-atom@2.0.8: + resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-cli@2.1.1: + resolution: {integrity: sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==} + engines: {node: '>=10'} + hasBin: true + dependencies: + add-stream: 1.0.0 + conventional-changelog: 3.1.25 + lodash: 4.17.21 + meow: 8.1.2 + tempfile: 3.0.0 + dev: true + + /conventional-changelog-codemirror@2.0.8: + resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-conventionalcommits@4.6.3: + resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + + /conventional-changelog-core@4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} + dependencies: + add-stream: 1.0.0 + conventional-changelog-writer: 5.0.1 + conventional-commits-parser: 3.2.4 + dateformat: 3.0.3 + get-pkg-repo: 4.2.1 + git-raw-commits: 2.0.11 + git-remote-origin-url: 2.0.0 + git-semver-tags: 4.1.1 + lodash: 4.17.21 + normalize-package-data: 3.0.3 + q: 1.5.1 + read-pkg: 3.0.0 + read-pkg-up: 3.0.0 + through2: 4.0.2 + dev: true + + /conventional-changelog-core@5.0.1: + resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==} + engines: {node: '>=14'} + dependencies: + add-stream: 1.0.0 + conventional-changelog-writer: 6.0.1 + conventional-commits-parser: 4.0.0 + dateformat: 3.0.3 + get-pkg-repo: 4.2.1 + git-raw-commits: 3.0.0 + git-remote-origin-url: 2.0.0 + git-semver-tags: 5.0.1 + normalize-package-data: 3.0.3 + read-pkg: 3.0.0 + read-pkg-up: 3.0.0 + dev: true + + /conventional-changelog-ember@2.0.9: + resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-eslint@3.0.9: + resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-express@2.0.6: + resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-jquery@3.0.11: + resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-jshint@2.0.9: + resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-preset-loader@2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + dev: true + + /conventional-changelog-preset-loader@3.0.0: + resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} + engines: {node: '>=14'} + dev: true + + /conventional-changelog-writer@5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true + dependencies: + conventional-commits-filter: 2.0.7 + dateformat: 3.0.3 + handlebars: 4.7.8 + json-stringify-safe: 5.0.1 + lodash: 4.17.21 + meow: 8.1.2 + semver: 6.3.1 + split: 1.0.1 + through2: 4.0.2 + dev: true + + /conventional-changelog-writer@6.0.1: + resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} + engines: {node: '>=14'} + hasBin: true + dependencies: + conventional-commits-filter: 3.0.0 + dateformat: 3.0.3 + handlebars: 4.7.8 + json-stringify-safe: 5.0.1 + meow: 8.1.2 + semver: 7.3.7 + split: 1.0.1 + dev: true + + /conventional-changelog@3.1.25: + resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} + engines: {node: '>=10'} + dependencies: + conventional-changelog-angular: 5.0.13 + conventional-changelog-atom: 2.0.8 + conventional-changelog-codemirror: 2.0.8 + conventional-changelog-conventionalcommits: 4.6.3 + conventional-changelog-core: 4.2.4 + conventional-changelog-ember: 2.0.9 + conventional-changelog-eslint: 3.0.9 + conventional-changelog-express: 2.0.6 + conventional-changelog-jquery: 3.0.11 + conventional-changelog-jshint: 2.0.9 + conventional-changelog-preset-loader: 2.3.4 + dev: true + + /conventional-commit-types@3.0.0: + resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==} + dev: true + + /conventional-commits-filter@2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} + dependencies: + lodash.ismatch: 4.4.0 + modify-values: 1.0.1 + dev: true + + /conventional-commits-filter@3.0.0: + resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} + engines: {node: '>=14'} + dependencies: + lodash.ismatch: 4.4.0 + modify-values: 1.0.1 + dev: true + + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /conventional-commits-parser@4.0.0: + resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} + engines: {node: '>=14'} + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + meow: 8.1.2 + split2: 3.2.2 + dev: true + + /conventional-recommended-bump@7.0.1: + resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} + engines: {node: '>=14'} + hasBin: true + dependencies: + concat-stream: 2.0.0 + conventional-changelog-preset-loader: 3.0.0 + conventional-commits-filter: 3.0.0 + conventional-commits-parser: 4.0.0 + git-raw-commits: 3.0.0 + git-semver-tags: 5.0.1 + meow: 8.1.2 + dev: true + + /convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + dev: true + + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + dev: true + + /core-js@3.35.1: + resolution: {integrity: sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==} + requiresBuild: true + dev: true + + /core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + dev: true + + /core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.5)(cosmiconfig@8.3.6)(typescript@4.9.4): + resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} + engines: {node: '>=v16'} + requiresBuild: true + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=8.2' + typescript: '>=4' + dependencies: + '@types/node': 20.11.5 + cosmiconfig: 8.3.6(typescript@4.9.4) + jiti: 1.21.0 + typescript: 4.9.4 + dev: true + optional: true + + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /cosmiconfig@8.3.6(typescript@4.9.4): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + typescript: 4.9.4 + dev: true + + /coveralls@3.1.0: + resolution: {integrity: sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==} + engines: {node: '>=6'} + hasBin: true + dependencies: + js-yaml: 3.14.1 + lcov-parse: 1.0.0 + log-driver: 1.2.7 + minimist: 1.2.8 + request: 2.88.2 + dev: true + + /create-jest@29.7.0(@types/node@20.11.5)(ts-node@8.5.2): + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + dev: true + + /cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true + dependencies: + cross-spawn: 7.0.3 + dev: true + + /cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + dependencies: + lru-cache: 4.1.5 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.1.0 + nth-check: 2.1.1 + dev: true + + /css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + dev: true + + /cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + dev: true + + /cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + dev: true + + /cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + dependencies: + cssom: 0.3.8 + dev: true + + /csv-generate@3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + dev: true + + /csv-parse@4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + dev: true + + /csv-stringify@5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + dev: true + + /csv@5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} + dependencies: + csv-generate: 3.4.3 + csv-parse: 4.16.3 + csv-stringify: 5.6.5 + stream-transform: 2.1.3 + dev: true + + /cz-conventional-changelog@3.3.0(@types/node@20.11.5)(typescript@4.9.4): + resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==} + engines: {node: '>= 10'} + dependencies: + chalk: 2.4.2 + commitizen: 4.3.0(@types/node@20.11.5)(typescript@4.9.4) + conventional-commit-types: 3.0.0 + lodash.map: 4.6.0 + longest: 2.0.1 + word-wrap: 1.2.5 + optionalDependencies: + '@commitlint/load': 18.5.0(@types/node@20.11.5)(typescript@4.9.4) + transitivePeerDependencies: + - '@types/node' + - typescript + dev: true + + /d@1.0.1: + resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} + dependencies: + es5-ext: 0.10.62 + type: 1.2.0 + dev: true + + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + + /dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + dependencies: + assert-plus: 1.0.0 + dev: true + + /data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + dev: true + + /date-format@2.1.0: + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} + deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. + dev: false + + /dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + dev: true + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + + /decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + dev: true + + /dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dev: true + + /dedent@1.5.1: + resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + dev: true + + /deep-eql@3.0.1: + resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} + engines: {node: '>=0.12'} + dependencies: + type-detect: 4.0.8 + dev: true + + /deep-equal-in-any-order@1.0.28: + resolution: {integrity: sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ==} + dependencies: + lodash.mapvalues: 4.6.0 + sort-any: 1.2.9 + dev: true + + /deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: false + + /deep-freeze-strict@1.1.1: + resolution: {integrity: sha512-QemROZMM2IvhAcCFvahdX2Vbm4S/txeq5rFYU9fh4mQP79WTMW5c/HkQ2ICl1zuzcDZdPZ6zarDxQeQMsVYoNA==} + dev: false + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + dev: true + + /default-require-extensions@3.0.1: + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} + dependencies: + strip-bom: 4.0.0 + dev: true + + /defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + dependencies: + clone: 1.0.4 + dev: true + + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + dev: true + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 + object-keys: 1.1.1 + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: true + + /delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + dev: true + + /denodeify@1.2.1: + resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + dev: true + + /deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + dev: true + + /detect-file@1.0.0: + resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} + engines: {node: '>=0.10.0'} + dev: true + + /detect-indent@5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + dev: true + + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true + + /detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + dev: true + + /diff-sequences@25.2.6: + resolution: {integrity: sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==} + engines: {node: '>= 8.3'} + dev: true + + /diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + dev: true + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + dev: true + + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + dependencies: + webidl-conversions: 7.0.0 + dev: true + + /domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dev: true + + /dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /dotenv-expand@10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} + dev: true + + /dotenv@16.3.2: + resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} + engines: {node: '>=12'} + dev: true + + /duplexer2@0.1.4: + resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} + dependencies: + readable-stream: 2.3.8 + dev: true + + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + dev: true + + /eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: true + + /ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + dev: true + + /ejs@3.1.9: + resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + jake: 10.8.7 + + /electron-to-chromium@1.4.643: + resolution: {integrity: sha512-QHscvvS7gt155PtoRC0dR2ilhL8E9LHhfTQEq1uD5AL0524rBLAwpAREFH06f87/e45B9XkR6Ki5dbhbCsVEIg==} + dev: true + + /emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + dev: true + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + + /emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + dev: true + + /enabled@2.0.0: + resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} + dev: false + + /encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + requiresBuild: true + dependencies: + iconv-lite: 0.6.3 + dev: true + optional: true + + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + + /enhanced-resolve@5.15.0: + resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + dev: true + + /enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + dev: true + + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + dev: true + + /entities@2.0.3: + resolution: {integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==} + dev: true + + /entities@4.3.0: + resolution: {integrity: sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==} + engines: {node: '>=0.12'} + dev: true + + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + dev: true + + /env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + dev: true + + /envinfo@7.8.1: + resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + dev: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + dependencies: + stackframe: 1.3.4 + dev: false + + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 + es-to-primitive: 1.2.1 + 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-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + internal-slot: 1.0.6 + 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.12 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.1.0 + safe-regex-test: 1.0.2 + 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.13 + dev: true + + /es-module-lexer@1.4.1: + resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} + dev: true + + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + has-tostringtag: 1.0.0 + hasown: 2.0.0 + dev: true + + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + dependencies: + hasown: 2.0.0 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /es5-ext@0.10.62: + resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} + engines: {node: '>=0.10'} + requiresBuild: true + dependencies: + es6-iterator: 2.0.3 + es6-symbol: 3.1.3 + next-tick: 1.1.0 + dev: true + + /es6-error@4.1.1: + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + dev: true + + /es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-symbol: 3.1.3 + dev: true + + /es6-symbol@3.1.3: + resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} + dependencies: + d: 1.0.1 + ext: 1.7.0 + dev: true + + /es6-weak-map@2.0.3: + resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-iterator: 2.0.3 + es6-symbol: 3.1.3 + dev: true + + /esbuild@0.17.12: + resolution: {integrity: sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.12 + '@esbuild/android-arm64': 0.17.12 + '@esbuild/android-x64': 0.17.12 + '@esbuild/darwin-arm64': 0.17.12 + '@esbuild/darwin-x64': 0.17.12 + '@esbuild/freebsd-arm64': 0.17.12 + '@esbuild/freebsd-x64': 0.17.12 + '@esbuild/linux-arm': 0.17.12 + '@esbuild/linux-arm64': 0.17.12 + '@esbuild/linux-ia32': 0.17.12 + '@esbuild/linux-loong64': 0.17.12 + '@esbuild/linux-mips64el': 0.17.12 + '@esbuild/linux-ppc64': 0.17.12 + '@esbuild/linux-riscv64': 0.17.12 + '@esbuild/linux-s390x': 0.17.12 + '@esbuild/linux-x64': 0.17.12 + '@esbuild/netbsd-x64': 0.17.12 + '@esbuild/openbsd-x64': 0.17.12 + '@esbuild/sunos-x64': 0.17.12 + '@esbuild/win32-arm64': 0.17.12 + '@esbuild/win32-ia32': 0.17.12 + '@esbuild/win32-x64': 0.17.12 + dev: true + + /escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + dev: true + + /escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + dev: true + + /eslint-config-prettier@7.2.0(eslint@7.18.0): + resolution: {integrity: sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 7.18.0 + dev: true + + /eslint-plugin-eslint-comments@3.2.0(eslint@7.18.0): + resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} + engines: {node: '>=6.5.0'} + peerDependencies: + eslint: '>=4.19.1' + dependencies: + escape-string-regexp: 1.0.5 + eslint: 7.18.0 + ignore: 5.3.0 + dev: true + + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils@3.0.0(eslint@7.18.0): + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 7.18.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + + /eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint@7.18.0: + resolution: {integrity: sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + dependencies: + '@babel/code-frame': 7.23.5 + '@eslint/eslintrc': 0.3.0 + ajv: 6.12.3 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + enquirer: 2.4.1 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.5.0 + esutils: 2.0.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 12.4.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash: 4.17.21 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.3.7 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 6.8.1 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color + dev: true + + /esm@3.2.25: + resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} + engines: {node: '>=6'} + dev: false + + /espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + acorn: 7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) + eslint-visitor-keys: 1.3.0 + dev: true + + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + dev: true + + /eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + dev: true + + /events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + dev: true + + /execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa@5.0.0: + resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} + engines: {node: '>=10'} + 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.7 + strip-final-newline: 2.0.0 + dev: true + + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + dev: true + + /expand-tilde@2.0.2: + resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} + engines: {node: '>=0.10.0'} + dependencies: + homedir-polyfill: 1.0.3 + dev: true + + /expect@25.5.0: + resolution: {integrity: sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==} + engines: {node: '>= 8.3'} + dependencies: + '@jest/types': 25.5.0 + ansi-styles: 4.3.0 + jest-get-type: 25.2.6 + jest-matcher-utils: 25.5.0 + jest-message-util: 25.5.0 + jest-regex-util: 25.2.6 + dev: true + + /expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/expect-utils': 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + dev: true + + /exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + dev: true + + /ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + dependencies: + type: 2.7.2 + dev: true + + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dev: true + + /extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + dev: true + + /external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + dev: true + + /extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fast-safe-stringify@2.0.7: + resolution: {integrity: sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==} + dev: false + + /fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + dependencies: + reusify: 1.0.4 + + /fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + dependencies: + bser: 2.1.1 + dev: true + + /fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + dependencies: + pend: 1.2.0 + dev: true + + /fecha@4.2.3: + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + dev: false + + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.2.0 + dev: true + + /filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + dependencies: + minimatch: 5.1.6 + + /fill-keys@1.0.2: + resolution: {integrity: sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==} + engines: {node: '>=0.10.0'} + dependencies: + is-object: 1.0.2 + merge-descriptors: 1.0.3 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + + /find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 + pkg-dir: 4.2.0 + dev: true + + /find-node-modules@2.1.3: + resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} + dependencies: + findup-sync: 4.0.0 + merge: 2.1.1 + dev: true + + /find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + dev: true + + /find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + dependencies: + micromatch: 4.0.5 + pkg-dir: 4.2.0 + dev: true + + /findit2@2.2.3: + resolution: {integrity: sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog==} + engines: {node: '>=0.8.22'} + dev: false + + /findup-sync@4.0.0: + resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==} + engines: {node: '>= 8'} + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + resolve-dir: 1.0.1 + dev: true + + /first-chunk-stream@2.0.0: + resolution: {integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==} + engines: {node: '>=0.10.0'} + dependencies: + readable-stream: 2.3.8 + dev: false + + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.9 + keyv: 4.5.4 + rimraf: 3.0.2 + dev: true + + /flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + dev: true + + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + dev: true + + /fn.name@1.1.0: + resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} + dev: false + + /follow-redirects@1.15.5: + resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: true + + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + + /foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 3.0.7 + dev: true + + /foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + dev: true + + /forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + dev: true + + /form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /fromentries@1.3.2: + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + dev: true + + /fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + dev: true + + /fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + /fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + dev: true + + /fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + dev: true + + /fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + /fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + dev: true + + /fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /fs-minipass@3.0.3: + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + minipass: 7.0.4 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /fstream@1.0.12: + resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} + engines: {node: '>=0.6'} + dependencies: + graceful-fs: 4.2.11 + inherits: 2.0.4 + mkdirp: 0.5.6 + rimraf: 2.7.1 + dev: true + + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + dev: true + + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + aproba: 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 + dev: true + + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: true + + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-func-name@2.0.2: + resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} + dev: true + + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + dependencies: + function-bind: 1.1.2 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + dev: true + + /get-own-enumerable-property-symbols@3.0.2: + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + dev: true + + /get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + dev: true + + /get-pkg-repo@4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true + dependencies: + '@hutson/parse-repository-url': 3.0.2 + hosted-git-info: 4.1.0 + through2: 2.0.5 + yargs: 16.2.0 + dev: true + + /get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} + dev: true + + /get-stdin@8.0.0: + resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==} + engines: {node: '>=10'} + dev: true + + /get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream@6.0.0: + resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} + engines: {node: '>=10'} + dev: true + + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + dev: true + + /getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + dependencies: + assert-plus: 1.0.0 + dev: true + + /git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /git-raw-commits@3.0.0: + resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} + engines: {node: '>=14'} + hasBin: true + dependencies: + dargs: 7.0.0 + meow: 8.1.2 + split2: 3.2.2 + dev: true + + /git-remote-origin-url@2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} + dependencies: + gitconfiglocal: 1.0.0 + pify: 2.3.0 + dev: true + + /git-semver-tags@4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + meow: 8.1.2 + semver: 6.3.1 + dev: true + + /git-semver-tags@5.0.1: + resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} + engines: {node: '>=14'} + hasBin: true + dependencies: + meow: 8.1.2 + semver: 7.3.7 + dev: true + + /git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + dependencies: + is-ssh: 1.4.0 + parse-url: 8.1.0 + dev: true + + /git-url-parse@13.1.0: + resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==} + dependencies: + git-up: 7.0.0 + dev: true + + /gitconfiglocal@1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + dependencies: + ini: 1.3.8 + dev: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + + /glob-promise@3.4.0(glob@7.1.6): + resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} + engines: {node: '>=4'} + peerDependencies: + glob: '*' + dependencies: + '@types/glob': 8.1.0 + glob: 7.1.6 + dev: true + + /glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + dev: true + + /glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.1 + dev: true + + /glob@7.1.4: + resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.0.5 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@7.1.6: + resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + dev: true + + /glob@9.3.5: + resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + fs.realpath: 1.0.0 + minimatch: 8.0.4 + minipass: 4.2.8 + path-scurry: 1.10.1 + dev: true + + /global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + dependencies: + ini: 1.3.8 + dev: true + + /global-modules@1.0.0: + resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} + engines: {node: '>=0.10.0'} + dependencies: + global-prefix: 1.0.2 + is-windows: 1.0.2 + resolve-dir: 1.0.1 + dev: true + + /global-prefix@1.0.2: + resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + homedir-polyfill: 1.0.3 + ini: 1.3.8 + is-windows: 1.0.2 + which: 1.3.1 + dev: true + + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: true + + /globals@12.4.0: + resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.8.1 + dev: true + + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.0 + merge2: 1.4.1 + slash: 3.0.0 + + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + /grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + dev: true + + /handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + dependencies: + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.17.4 + dev: true + + /har-schema@2.0.0: + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} + dev: true + + /har-validator@5.1.5: + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} + deprecated: this library is no longer supported + dependencies: + ajv: 6.12.3 + har-schema: 2.0.0 + dev: true + + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + dev: true + + /hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} + dependencies: + is-stream: 2.0.1 + type-fest: 0.8.1 + dev: true + + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + dev: true + + /homedir-polyfill@1.0.3: + resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} + engines: {node: '>=0.10.0'} + dependencies: + parse-passwd: 1.0.0 + dev: true + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info@3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /hosted-git-info@6.1.1: + resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + lru-cache: 7.18.3 + dev: true + + /html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + dependencies: + whatwg-encoding: 2.0.0 + dev: true + + /html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + dev: true + + /htmlparser2@8.0.2: + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + entities: 4.5.0 + dev: true + + /http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + dev: true + + /http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 1.1.2 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /http-signature@1.2.0: + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} + dependencies: + assert-plus: 1.0.0 + jsprim: 1.4.2 + sshpk: 1.18.0 + dev: true + + /https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + /human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + dev: true + + /human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true + + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + dependencies: + ms: 2.1.3 + dev: true + + /husky@8.0.1: + resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==} + engines: {node: '>=14'} + hasBin: true + dev: true + + /i18next@19.0.2: + resolution: {integrity: sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==} + dependencies: + '@babel/runtime': 7.23.8 + dev: true + + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true + + /ignore-walk@5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minimatch: 5.1.6 + dev: true + + /ignore-walk@6.0.4: + resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + minimatch: 9.0.3 + dev: true + + /ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + dev: true + + /ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} + engines: {node: '>= 4'} + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-local@3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /init-package-json@5.0.0: + resolution: {integrity: sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + npm-package-arg: 10.1.0 + promzard: 1.0.0 + read: 2.1.0 + read-package-json: 6.0.4 + semver: 7.3.7 + validate-npm-package-license: 3.0.4 + validate-npm-package-name: 5.0.0 + dev: true + + /inquirer@8.2.5: + resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} + engines: {node: '>=12.0.0'} + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.1 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.1 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 6.2.0 + dev: true + + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + hasown: 2.0.0 + side-channel: 1.0.4 + dev: true + + /interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + dev: true + + /ip@2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + dev: true + + /is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + dev: false + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + has-tostringtag: 1.0.0 + dev: true + + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + + /is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + dependencies: + ci-info: 3.9.0 + dev: true + + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + dependencies: + hasown: 2.0.0 + dev: true + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + dev: true + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true + + /is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + dev: true + + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + /is-obj@1.0.1: + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-object@1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + dev: true + + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + dev: true + + /is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true + + /is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: true + + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + has-tostringtag: 1.0.0 + dev: true + + /is-regexp@1.0.0: + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + dependencies: + protocols: 2.0.1 + dev: true + + /is-stream@2.0.0: + resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} + engines: {node: '>=8'} + dev: true + + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + dependencies: + better-path-resolve: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.13 + dev: true + + /is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + dev: true + + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + + /is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + dependencies: + is-docker: 2.2.1 + dev: true + + /isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + + /isbinaryfile@4.0.10: + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} + engines: {node: '>= 8.0.0'} + dev: false + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + dev: true + + /isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true + + /istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + dev: true + + /istanbul-lib-hook@3.0.0: + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} + dependencies: + append-transform: 2.0.0 + dev: true + + /istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.23.7 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.23.7 + '@babel/parser': 7.23.6 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-instrument@6.0.1: + resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} + engines: {node: '>=10'} + dependencies: + '@babel/core': 7.23.7 + '@babel/parser': 7.23.6 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-processinfo@2.0.3: + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + engines: {node: '>=8'} + dependencies: + archy: 1.0.0 + cross-spawn: 7.0.3 + istanbul-lib-coverage: 3.2.2 + p-map: 3.0.0 + rimraf: 3.0.2 + uuid: 8.3.2 + dev: true + + /istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + dev: true + + /istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + dependencies: + debug: 4.3.4 + istanbul-lib-coverage: 3.2.2 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-reports@3.1.6: + resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} + engines: {node: '>=8'} + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + dev: true + + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + dev: true + + /jake@10.8.7: + resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} + engines: {node: '>=10'} + hasBin: true + dependencies: + async: 3.2.5 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 + + /jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + execa: 5.1.1 + jest-util: 29.7.0 + p-limit: 3.1.0 + dev: true + + /jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + chalk: 4.1.2 + co: 4.6.0 + dedent: 1.5.1 + is-generator-fn: 2.1.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.4 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + dev: true + + /jest-cli@29.7.0(@types/node@20.11.5)(ts-node@8.5.2): + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.7.0(ts-node@8.5.2) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + dev: true + + /jest-config@29.5.0(@types/node@20.11.5)(ts-node@8.5.2): + resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} + 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 + dependencies: + '@babel/core': 7.23.7 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + babel-jest: 29.7.0(@babel/core@7.23.7) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.1.6 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.5.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.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + ts-node: 8.5.2(typescript@4.9.4) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + dev: true + + /jest-config@29.7.0(@types/node@20.11.5)(ts-node@8.5.2): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + 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 + dependencies: + '@babel/core': 7.23.7 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + babel-jest: 29.7.0(@babel/core@7.23.7) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.1.6 + graceful-fs: 4.2.11 + 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.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + ts-node: 8.5.2(typescript@4.9.4) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + dev: true + + /jest-diff@25.5.0: + resolution: {integrity: sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==} + engines: {node: '>= 8.3'} + dependencies: + chalk: 3.0.0 + diff-sequences: 25.2.6 + jest-get-type: 25.2.6 + pretty-format: 25.5.0 + dev: true + + /jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + diff-sequences: 29.6.3 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + dev: true + + /jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + detect-newline: 3.1.0 + dev: true + + /jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + jest-get-type: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 + dev: true + + /jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/jsdom': 20.0.1 + '@types/node': 20.11.5 + jest-mock: 29.7.0 + jest-util: 29.7.0 + jsdom: 20.0.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jest-environment-node@29.5.0: + resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + jest-mock: 29.7.0 + jest-util: 29.7.0 + dev: true + + /jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + jest-mock: 29.7.0 + jest-util: 29.7.0 + dev: true + + /jest-esm-transformer@1.0.0: + resolution: {integrity: sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==} + dependencies: + '@babel/core': 7.23.7 + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) + transitivePeerDependencies: + - supports-color + dev: true + + /jest-extended@3.2.3(jest@29.5.0): + resolution: {integrity: sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + jest: '>=27.2.5' + peerDependenciesMeta: + jest: + optional: true + dependencies: + jest: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + dev: true + + /jest-get-type@25.2.6: + resolution: {integrity: sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==} + engines: {node: '>= 8.3'} + dev: true + + /jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.11.5 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /jest-junit@15.0.0: + resolution: {integrity: sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==} + engines: {node: '>=10.12.0'} + dependencies: + mkdirp: 1.0.4 + strip-ansi: 6.0.1 + uuid: 8.3.2 + xml: 1.0.1 + dev: true + + /jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + dev: true + + /jest-matcher-utils@25.5.0: + resolution: {integrity: sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==} + engines: {node: '>= 8.3'} + dependencies: + chalk: 3.0.0 + jest-diff: 25.5.0 + jest-get-type: 25.2.6 + pretty-format: 25.5.0 + dev: true + + /jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + dev: true + + /jest-message-util@25.5.0: + resolution: {integrity: sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==} + engines: {node: '>= 8.3'} + dependencies: + '@babel/code-frame': 7.23.5 + '@jest/types': 25.5.0 + '@types/stack-utils': 1.0.1 + chalk: 3.0.0 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + slash: 3.0.0 + stack-utils: 1.0.5 + dev: true + + /jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/code-frame': 7.23.5 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 + dev: true + + /jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + jest-util: 29.7.0 + dev: true + + /jest-pnp-resolver@1.2.3(jest-resolve@25.5.1): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 25.5.1 + dev: true + + /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 29.7.0 + dev: true + + /jest-regex-util@25.2.6: + resolution: {integrity: sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==} + engines: {node: '>= 8.3'} + dev: true + + /jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + jest-regex-util: 29.6.3 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-resolve@25.5.1: + resolution: {integrity: sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==} + engines: {node: '>= 8.3'} + dependencies: + '@jest/types': 25.5.0 + browser-resolve: 1.11.3 + chalk: 3.0.0 + graceful-fs: 4.2.11 + jest-pnp-resolver: 1.2.3(jest-resolve@25.5.1) + read-pkg-up: 7.0.1 + realpath-native: 2.0.0 + resolve: 1.22.8 + slash: 3.0.0 + dev: true + + /jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.8 + resolve.exports: 2.0.2 + slash: 3.0.0 + dev: true + + /jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + chalk: 4.1.2 + emittery: 0.13.1 + graceful-fs: 4.2.11 + 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 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + 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': 20.11.5 + chalk: 4.1.2 + cjs-module-lexer: 1.2.3 + collect-v8-coverage: 1.0.2 + glob: 7.1.6 + graceful-fs: 4.2.11 + 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 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-snapshot@25.5.1: + resolution: {integrity: sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==} + engines: {node: '>= 8.3'} + dependencies: + '@babel/types': 7.23.6 + '@jest/types': 25.5.0 + '@types/prettier': 1.19.1 + chalk: 3.0.0 + expect: 25.5.0 + graceful-fs: 4.2.11 + jest-diff: 25.5.0 + jest-get-type: 25.2.6 + jest-matcher-utils: 25.5.0 + jest-message-util: 25.5.0 + jest-resolve: 25.5.1 + make-dir: 3.1.0 + natural-compare: 1.4.0 + pretty-format: 25.5.0 + semver: 6.3.1 + dev: true + + /jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@babel/core': 7.23.7 + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) + '@babel/types': 7.23.6 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7) + chalk: 4.1.2 + expect: 29.7.0 + graceful-fs: 4.2.11 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + natural-compare: 1.4.0 + pretty-format: 29.7.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-sonar@0.2.16: + resolution: {integrity: sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==} + dependencies: + entities: 4.3.0 + strip-ansi: 6.0.1 + dev: true + + /jest-specific-snapshot@3.0.0(jest@29.5.0): + resolution: {integrity: sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==} + peerDependencies: + jest: '>= 25.0.0' + dependencies: + jest: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-snapshot: 25.5.1 + dev: true + + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + chalk: 4.1.2 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + dev: true + + /jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.6.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 + dev: true + + /jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.11.5 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.7.0 + string-length: 4.0.2 + dev: true + + /jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 20.11.5 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@types/node': 20.11.5 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jest@29.5.0(@types/node@20.11.5)(ts-node@8.5.2): + resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.7.0(ts-node@8.5.2) + '@jest/types': 29.6.3 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + dev: true + + /jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + hasBin: true + requiresBuild: true + dev: true + optional: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: true + + /js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + + /jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true + + /jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: 2.0.6 + acorn: 8.11.3 + acorn-globals: 7.0.1 + cssom: 0.5.0 + cssstyle: 2.3.0 + data-urls: 3.0.2 + decimal.js: 10.4.3 + domexception: 4.0.0 + escodegen: 2.1.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.7 + parse5: 7.1.2 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.3 + 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.16.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + + /json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-parse-even-better-errors@3.0.1: + resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /json-schema-ref-parser@9.0.9: + resolution: {integrity: sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==} + engines: {node: '>=10'} + deprecated: Please switch to @apidevtools/json-schema-ref-parser + dependencies: + '@apidevtools/json-schema-ref-parser': 9.0.9 + dev: true + + /json-schema-to-typescript@10.0.3: + resolution: {integrity: sha512-CKM7XZqjKhsC96RWTdczTZc5KSv1PfgwGjprf7poO0osmgKmFp2Sj10jCi96gu73naVLJtrX8x7nAf9Vq2fl2Q==} + engines: {node: '>=10.0.0'} + hasBin: true + dependencies: + '@types/json-schema': 7.0.15 + '@types/prettier': 2.7.3 + cli-color: 2.0.3 + glob: 7.1.6 + glob-promise: 3.4.0(glob@7.1.6) + is-glob: 4.0.3 + json-schema-ref-parser: 9.0.9 + json-stringify-safe: 5.0.1 + lodash: 4.17.21 + minimist: 1.2.8 + mkdirp: 1.0.4 + mz: 2.7.0 + prettier: 2.8.7 + stdin: 0.0.1 + dev: true + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true + + /json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + dev: true + + /jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + optionalDependencies: + graceful-fs: 4.2.11 + + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + /jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true + + /jsprim@1.4.2: + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + dev: true + + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 + dev: true + + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + dev: true + + /klaw-sync@6.0.0: + resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==} + dependencies: + graceful-fs: 4.2.11 + dev: true + + /kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + dev: true + + /kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true + + /kuler@2.0.0: + resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} + dev: false + + /lcov-parse@1.0.0: + resolution: {integrity: sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==} + hasBin: true + dev: true + + /lerna@7.4.2: + resolution: {integrity: sha512-gxavfzHfJ4JL30OvMunmlm4Anw7d7Tq6tdVHzUukLdS9nWnxCN/QB21qR+VJYp5tcyXogHKbdUEGh6qmeyzxSA==} + engines: {node: '>=16.0.0'} + hasBin: true + dependencies: + '@lerna/child-process': 7.4.2 + '@lerna/create': 7.4.2(typescript@4.9.4) + '@npmcli/run-script': 6.0.2 + '@nx/devkit': 16.10.0(nx@16.10.0) + '@octokit/plugin-enterprise-rest': 6.0.1 + '@octokit/rest': 19.0.11 + byte-size: 8.1.1 + chalk: 4.1.0 + clone-deep: 4.0.1 + cmd-shim: 6.0.1 + columnify: 1.6.0 + conventional-changelog-angular: 7.0.0 + conventional-changelog-core: 5.0.1 + conventional-recommended-bump: 7.0.1 + cosmiconfig: 8.3.6(typescript@4.9.4) + dedent: 0.7.0 + envinfo: 7.8.1 + execa: 5.0.0 + fs-extra: 11.2.0 + get-port: 5.1.1 + get-stream: 6.0.0 + git-url-parse: 13.1.0 + glob-parent: 5.1.2 + globby: 11.1.0 + graceful-fs: 4.2.11 + has-unicode: 2.0.1 + import-local: 3.1.0 + ini: 1.3.8 + init-package-json: 5.0.0 + inquirer: 8.2.6 + is-ci: 3.0.1 + is-stream: 2.0.0 + jest-diff: 29.7.0 + js-yaml: 4.1.0 + libnpmaccess: 7.0.2 + libnpmpublish: 7.3.0 + load-json-file: 6.2.0 + lodash: 4.17.21 + make-dir: 4.0.0 + minimatch: 3.0.5 + multimatch: 5.0.0 + node-fetch: 2.6.7 + npm-package-arg: 8.1.1 + npm-packlist: 5.1.1 + npm-registry-fetch: 14.0.5 + npmlog: 6.0.2 + nx: 16.10.0 + p-map: 4.0.0 + p-map-series: 2.1.0 + p-pipe: 3.1.0 + p-queue: 6.6.2 + p-reduce: 2.1.0 + p-waterfall: 2.1.1 + pacote: 15.2.0 + pify: 5.0.0 + read-cmd-shim: 4.0.0 + read-package-json: 6.0.4 + resolve-from: 5.0.0 + rimraf: 4.4.1 + semver: 7.5.4 + signal-exit: 3.0.7 + slash: 3.0.0 + ssri: 9.0.1 + strong-log-transformer: 2.1.0 + tar: 6.1.11 + temp-dir: 1.0.0 + typescript: 4.9.4 + upath: 2.0.1 + uuid: 9.0.1 + validate-npm-package-license: 3.0.4 + validate-npm-package-name: 5.0.0 + write-file-atomic: 5.0.1 + write-pkg: 4.0.0 + yargs: 16.2.0 + yargs-parser: 20.2.4 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - bluebird + - debug + - encoding + - supports-color + dev: true + + /leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + dev: true + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /libnpmaccess@7.0.2: + resolution: {integrity: sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + npm-package-arg: 10.1.0 + npm-registry-fetch: 14.0.5 + transitivePeerDependencies: + - supports-color + dev: true + + /libnpmpublish@7.3.0: + resolution: {integrity: sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + ci-info: 3.9.0 + normalize-package-data: 5.0.0 + npm-package-arg: 10.1.0 + npm-registry-fetch: 14.0.5 + proc-log: 3.0.0 + semver: 7.3.7 + sigstore: 1.9.0 + ssri: 10.0.5 + transitivePeerDependencies: + - supports-color + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /lines-and-columns@2.0.4: + resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /linkify-it@2.2.0: + resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==} + dependencies: + uc.micro: 1.0.6 + dev: true + + /lint-staged@10.5.3: + resolution: {integrity: sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==} + hasBin: true + dependencies: + chalk: 4.1.2 + cli-truncate: 2.1.0 + commander: 6.2.1 + cosmiconfig: 7.1.0 + debug: 4.3.4 + dedent: 0.7.0 + enquirer: 2.4.1 + execa: 4.1.0 + listr2: 3.14.0(enquirer@2.4.1) + log-symbols: 4.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + please-upgrade-node: 3.2.0 + string-argv: 0.3.1 + stringify-object: 3.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /listenercount@1.0.1: + resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} + dev: true + + /listr2@3.14.0(enquirer@2.4.1): + resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} + engines: {node: '>=10.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.20 + enquirer: 2.4.1 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.1 + rxjs: 7.8.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + dev: true + + /load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} + dependencies: + graceful-fs: 4.2.11 + parse-json: 5.2.0 + strip-bom: 4.0.0 + type-fest: 0.6.0 + dev: true + + /load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} + dependencies: + graceful-fs: 4.2.11 + js-yaml: 3.14.1 + pify: 4.0.1 + strip-bom: 3.0.0 + dev: true + + /loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + dev: true + + /loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.3 + dev: true + + /locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + dev: true + + /lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + dev: true + + /lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + requiresBuild: true + dev: true + optional: true + + /lodash.map@4.6.0: + resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} + dev: true + + /lodash.mapvalues@4.6.0: + resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} + dev: true + + /lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + requiresBuild: true + dev: true + optional: true + + /lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + requiresBuild: true + dev: true + optional: true + + /lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + dev: true + + /lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + dev: true + + /lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + requiresBuild: true + dev: true + optional: true + + /lodash@4.17.15: + resolution: {integrity: sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==} + + /lodash@4.17.20: + resolution: {integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==} + dev: false + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + /log-driver@1.2.7: + resolution: {integrity: sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==} + engines: {node: '>=0.8.6'} + dev: true + + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} + dependencies: + ansi-escapes: 4.3.2 + cli-cursor: 3.1.0 + slice-ansi: 4.0.0 + wrap-ansi: 6.2.0 + dev: true + + /logform@2.6.0: + resolution: {integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==} + engines: {node: '>= 12.0.0'} + dependencies: + '@colors/colors': 1.6.0 + '@types/triple-beam': 1.3.5 + fecha: 4.2.3 + ms: 2.1.3 + safe-stable-stringify: 2.4.3 + triple-beam: 1.3.0 + dev: false + + /longest@2.0.1: + resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==} + engines: {node: '>=0.10.0'} + dev: true + + /lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + dev: true + + /lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + dev: true + + /lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + dependencies: + yallist: 3.1.1 + dev: true + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + + /lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + dev: true + + /lru-queue@0.1.0: + resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} + dependencies: + es5-ext: 0.10.62 + dev: true + + /make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + dependencies: + pify: 4.0.1 + semver: 5.7.2 + dev: true + + /make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.1 + dev: true + + /make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + dependencies: + semver: 7.5.4 + dev: true + + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + dev: true + + /make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + agentkeepalive: 4.5.0 + cacache: 16.1.3 + http-cache-semantics: 4.1.1 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 7.18.3 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-fetch: 2.1.2 + 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: 9.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /make-fetch-happen@11.1.1: + resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + agentkeepalive: 4.5.0 + cacache: 17.1.4 + http-cache-semantics: 4.1.1 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 7.18.3 + minipass: 5.0.0 + minipass-fetch: 3.0.4 + 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.5 + transitivePeerDependencies: + - supports-color + dev: true + + /makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + dependencies: + tmpl: 1.0.5 + dev: true + + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /markdown-it@10.0.0: + resolution: {integrity: sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==} + hasBin: true + dependencies: + argparse: 1.0.10 + entities: 2.0.3 + linkify-it: 2.2.0 + mdurl: 1.0.1 + uc.micro: 1.0.6 + dev: true + + /matomo-tracker@2.2.2: + resolution: {integrity: sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ==} + engines: {node: '>=4.2.0'} + dev: false + + /mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + dev: true + + /mem-fs-editor@9.4.0(mem-fs@2.1.0): + resolution: {integrity: sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==} + engines: {node: '>=12.10.0'} + peerDependencies: + mem-fs: ^2.1.0 + peerDependenciesMeta: + mem-fs: + optional: true + dependencies: + binaryextensions: 4.19.0 + commondir: 1.0.1 + deep-extend: 0.6.0 + ejs: 3.1.9 + globby: 11.1.0 + isbinaryfile: 4.0.10 + mem-fs: 2.1.0 + minimatch: 3.1.2 + multimatch: 5.0.0 + normalize-path: 3.0.0 + textextensions: 5.16.0 + dev: false + + /mem-fs@2.1.0: + resolution: {integrity: sha512-55vFOT4rfJx/9uoWntNrfzEj9209rd26spsSvKsCVBfOPH001YS5IakfElhcyagieC4uL++Ry/XDcwvgxF4/zQ==} + engines: {node: '>=12'} + dependencies: + vinyl: 2.2.1 + vinyl-file: 3.0.0 + dev: false + + /memoizee@0.4.15: + resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-weak-map: 2.0.3 + event-emitter: 0.3.5 + is-promise: 2.2.2 + lru-queue: 0.1.0 + next-tick: 1.1.0 + timers-ext: 0.1.7 + dev: true + + /memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + dev: true + + /meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 2.5.0 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.13.1 + yargs-parser: 18.1.3 + dev: true + + /meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-descriptors@1.0.3: + resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + /merge@2.1.1: + resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + dependencies: + brace-expansion: 1.1.11 + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + + /minimatch@8.0.4: + resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist@1.2.7: + resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} + dev: true + + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + dev: true + + /minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minipass: 3.3.6 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + dev: true + + /minipass-fetch@3.0.4: + resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + minipass: 7.0.4 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + dev: true + + /minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass-json-stream@1.0.1: + resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + dependencies: + jsonparse: 1.3.1 + minipass: 3.3.6 + dev: true + + /minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + dependencies: + minipass: 3.3.6 + dev: true + + /minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + dependencies: + yallist: 4.0.0 + dev: true + + /minipass@4.2.8: + resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + engines: {node: '>=8'} + dev: true + + /minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + dev: true + + /minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} + dev: true + + /minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + dev: true + + /mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} + dev: true + + /mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + + /mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + dev: true + + /mock-fs@5.2.0: + resolution: {integrity: sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw==} + engines: {node: '>=12.0.0'} + dev: true + + /modify-values@1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + dev: true + + /module-not-found-error@1.0.1: + resolution: {integrity: sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==} + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + /multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} + dependencies: + '@types/minimatch': 3.0.5 + array-differ: 3.0.0 + array-union: 2.1.0 + arrify: 2.0.1 + minimatch: 3.0.5 + + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true + + /mute-stream@1.0.0: + resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + dev: true + + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: true + + /neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + dev: true + + /next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + dev: true + + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + dev: true + + /node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + dev: true + + /node-fetch@2.6.7: + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + + /node-fetch@2.6.9: + resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + + /node-gyp-build@4.8.0: + resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} + hasBin: true + dev: true + + /node-gyp@9.4.1: + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true + dependencies: + env-paths: 2.2.1 + exponential-backoff: 3.1.1 + glob: 7.1.6 + graceful-fs: 4.2.11 + make-fetch-happen: 10.2.1 + nopt: 6.0.0 + npmlog: 6.0.2 + rimraf: 3.0.2 + semver: 7.3.7 + tar: 6.1.11 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + dev: true + + /node-machine-id@1.1.12: + resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} + dev: true + + /node-preload@0.2.1: + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} + dependencies: + process-on-spawn: 1.0.0 + dev: true + + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + dev: true + + /nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.8 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.13.1 + semver: 7.3.7 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@5.0.0: + resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + hosted-git-info: 6.1.1 + is-core-module: 2.13.1 + semver: 7.3.7 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + /npm-bundled@1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + dependencies: + npm-normalize-package-bin: 1.0.1 + dev: true + + /npm-bundled@3.0.0: + resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + npm-normalize-package-bin: 3.0.1 + dev: true + + /npm-install-checks@6.3.0: + resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + semver: 7.3.7 + dev: true + + /npm-normalize-package-bin@1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + dev: true + + /npm-normalize-package-bin@3.0.1: + resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /npm-package-arg@10.1.0: + resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + hosted-git-info: 6.1.1 + proc-log: 3.0.0 + semver: 7.3.7 + validate-npm-package-name: 5.0.0 + dev: true + + /npm-package-arg@8.1.1: + resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 3.0.8 + semver: 7.3.7 + validate-npm-package-name: 3.0.0 + dev: true + + /npm-packlist@5.1.1: + resolution: {integrity: sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + glob: 8.1.0 + ignore-walk: 5.0.1 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 + dev: true + + /npm-packlist@7.0.4: + resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + ignore-walk: 6.0.4 + dev: true + + /npm-pick-manifest@8.0.2: + resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + npm-install-checks: 6.3.0 + npm-normalize-package-bin: 3.0.1 + npm-package-arg: 10.1.0 + semver: 7.3.7 + dev: true + + /npm-registry-fetch@14.0.5: + resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + make-fetch-happen: 11.1.1 + minipass: 5.0.0 + minipass-fetch: 3.0.4 + minipass-json-stream: 1.0.1 + minizlib: 2.1.2 + npm-package-arg: 10.1.0 + proc-log: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.5 + memorystream: 0.3.1 + minimatch: 3.1.2 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.1 + string.prototype.padend: 3.1.5 + dev: true + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + are-we-there-yet: 3.0.1 + console-control-strings: 1.1.0 + gauge: 4.0.4 + set-blocking: 2.0.0 + dev: true + + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /nwsapi@2.2.7: + resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + dev: true + + /nx@16.10.0: + resolution: {integrity: sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.6.7 + '@swc/core': ^1.3.85 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + dependencies: + '@nrwl/tao': 16.10.0 + '@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.6.5 + chalk: 4.1.0 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 8.0.1 + dotenv: 16.3.2 + dotenv-expand: 10.0.0 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 11.2.0 + glob: 7.1.4 + ignore: 5.3.0 + jest-diff: 29.7.0 + js-yaml: 4.1.0 + jsonc-parser: 3.2.0 + lines-and-columns: 2.0.4 + minimatch: 3.0.5 + node-machine-id: 1.1.12 + npm-run-path: 4.0.1 + open: 8.4.2 + 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.2.0 + tslib: 2.6.2 + v8-compile-cache: 2.3.0 + yargs: 17.7.2 + yargs-parser: 21.1.1 + optionalDependencies: + '@nx/nx-darwin-arm64': 16.10.0 + '@nx/nx-darwin-x64': 16.10.0 + '@nx/nx-freebsd-x64': 16.10.0 + '@nx/nx-linux-arm-gnueabihf': 16.10.0 + '@nx/nx-linux-arm64-gnu': 16.10.0 + '@nx/nx-linux-arm64-musl': 16.10.0 + '@nx/nx-linux-x64-gnu': 16.10.0 + '@nx/nx-linux-x64-musl': 16.10.0 + '@nx/nx-win32-arm64-msvc': 16.10.0 + '@nx/nx-win32-x64-msvc': 16.10.0 + transitivePeerDependencies: + - debug + dev: true + + /nyc@15.1.0: + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} + hasBin: true + dependencies: + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + caching-transform: 4.0.0 + convert-source-map: 1.9.0 + decamelize: 1.2.0 + find-cache-dir: 3.3.2 + find-up: 4.1.0 + foreground-child: 2.0.0 + get-package-type: 0.1.0 + glob: 7.1.6 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-hook: 3.0.0 + istanbul-lib-instrument: 4.0.3 + istanbul-lib-processinfo: 2.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.6 + make-dir: 3.1.0 + node-preload: 0.2.1 + p-map: 3.0.0 + process-on-spawn: 1.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + signal-exit: 3.0.7 + spawn-wrap: 2.0.0 + test-exclude: 6.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - supports-color + dev: true + + /oauth-sign@0.9.0: + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + dev: true + + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: true + + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /one-time@1.0.0: + resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} + dependencies: + fn.name: 1.1.0 + dev: false + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + dependencies: + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 + dev: true + + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} + dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /os-homedir@1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} + dev: true + + /os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true + + /os@0.1.1: + resolution: {integrity: sha512-jg06S2xr5De63mLjZVJDf3/k37tpjppr2LR7MUOsxv8XuUCVpCnvbCksXCBcB5gQqQf/K0+87WGTRlAj5q7r1A==} + dev: true + + /osenv@0.1.5: + resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} + dependencies: + os-homedir: 1.0.2 + os-tmpdir: 1.0.2 + dev: true + + /outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + dev: true + + /p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + dependencies: + p-map: 2.1.0 + dev: true + + /p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + dev: true + + /p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-map-series@2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + dev: true + + /p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + dev: true + + /p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + dev: true + + /p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + dependencies: + eventemitter3: 4.0.7 + p-timeout: 3.2.0 + dev: true + + /p-reduce@2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + dev: true + + /p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + dependencies: + p-finally: 1.0.0 + dev: true + + /p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /p-waterfall@2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} + dependencies: + p-reduce: 2.1.0 + dev: true + + /package-hash@4.0.0: + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} + dependencies: + graceful-fs: 4.2.11 + hasha: 5.2.2 + lodash.flattendeep: 4.4.0 + release-zalgo: 1.0.0 + dev: true + + /pacote@15.2.0: + resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + dependencies: + '@npmcli/git': 4.1.0 + '@npmcli/installed-package-contents': 2.0.2 + '@npmcli/promise-spawn': 6.0.2 + '@npmcli/run-script': 6.0.2 + cacache: 17.1.4 + fs-minipass: 3.0.3 + minipass: 5.0.0 + npm-package-arg: 10.1.0 + npm-packlist: 7.0.4 + npm-pick-manifest: 8.0.2 + npm-registry-fetch: 14.0.5 + proc-log: 3.0.0 + promise-retry: 2.0.1 + read-package-json: 6.0.4 + read-package-json-fast: 3.0.2 + sigstore: 1.9.0 + ssri: 10.0.5 + tar: 6.1.11 + transitivePeerDependencies: + - bluebird + - supports-color + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.23.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-passwd@1.0.0: + resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} + engines: {node: '>=0.10.0'} + dev: true + + /parse-path@7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + dependencies: + protocols: 2.0.1 + dev: true + + /parse-semver@1.1.1: + resolution: {integrity: sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==} + dependencies: + semver: 5.7.2 + dev: true + + /parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + dependencies: + parse-path: 7.0.0 + dev: true + + /parse5-htmlparser2-tree-adapter@7.0.0: + resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} + dependencies: + domhandler: 5.0.3 + parse5: 7.1.2 + dev: true + + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + dependencies: + entities: 4.5.0 + dev: true + + /path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + dev: true + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + lru-cache: 10.1.0 + minipass: 7.0.4 + dev: true + + /path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + dependencies: + pify: 3.0.0 + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + /pathval@1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + dev: true + + /pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + dev: true + + /performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + dev: true + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + /pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + + /pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + /pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + dev: true + + /pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + dev: true + + /pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + dev: true + + /pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + dev: true + + /pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + dev: true + + /please-upgrade-node@3.2.0: + resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} + dependencies: + semver-compare: 1.0.0 + dev: true + + /preferred-pm@3.1.2: + resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} + engines: {node: '>=10'} + dependencies: + find-up: 5.0.0 + find-yarn-workspace-root2: 1.2.16 + path-exists: 4.0.0 + which-pm: 2.0.0 + dev: true + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prettier@2.8.7: + resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} + engines: {node: '>=10.13.0'} + hasBin: true + + /pretty-format@25.5.0: + resolution: {integrity: sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==} + engines: {node: '>= 8.3'} + dependencies: + '@jest/types': 25.5.0 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + react-is: 16.13.1 + dev: true + + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /proc-log@3.0.0: + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + /process-on-spawn@1.0.0: + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} + dependencies: + fromentries: 1.3.2 + dev: true + + /progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + dev: true + + /promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + dev: true + + /promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + dependencies: + err-code: 2.0.3 + retry: 0.12.0 + dev: true + + /prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: true + + /promzard@1.0.0: + resolution: {integrity: sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + read: 2.1.0 + dev: true + + /protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + dev: true + + /proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + /proxyquire@2.1.3: + resolution: {integrity: sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==} + dependencies: + fill-keys: 1.0.2 + module-not-found-error: 1.0.1 + resolve: 1.22.8 + dev: true + + /pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + dev: true + + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true + + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + /pure-rand@6.0.4: + resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} + dev: true + + /q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + /qs@6.5.3: + resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} + engines: {node: '>=0.6'} + dev: true + + /querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + dev: true + + /react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + dev: true + + /read-cmd-shim@4.0.0: + resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /read-package-json-fast@3.0.2: + resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + json-parse-even-better-errors: 3.0.1 + npm-normalize-package-bin: 3.0.1 + dev: true + + /read-package-json@6.0.4: + resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + glob: 10.3.10 + json-parse-even-better-errors: 3.0.1 + normalize-package-data: 5.0.0 + npm-normalize-package-bin: 3.0.1 + dev: true + + /read-pkg-up@3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} + dependencies: + find-up: 2.1.0 + read-pkg: 3.0.0 + dev: true + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + dependencies: + graceful-fs: 4.2.11 + js-yaml: 3.14.1 + pify: 4.0.1 + strip-bom: 3.0.0 + dev: true + + /read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + dependencies: + mute-stream: 0.0.8 + dev: true + + /read@2.1.0: + resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + mute-stream: 1.0.0 + dev: true + + /readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + /realpath-native@2.0.0: + resolution: {integrity: sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==} + engines: {node: '>=8'} + dev: true + + /rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} + dependencies: + resolve: 1.22.8 + dev: true + + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + dev: true + + /regexp-to-ast@0.5.0: + resolution: {integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==} + + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 + dev: true + + /regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + + /release-zalgo@1.0.0: + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} + dependencies: + es6-error: 4.1.1 + dev: true + + /remove-trailing-separator@1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + dev: false + + /replace-ext@1.0.1: + resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} + engines: {node: '>= 0.10'} + dev: false + + /request@2.88.2: + resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} + engines: {node: '>= 6'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + dependencies: + aws-sign2: 0.7.0 + aws4: 1.12.0 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.3.3 + har-validator: 5.1.5 + http-signature: 1.2.0 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + oauth-sign: 0.9.0 + performance-now: 2.1.0 + qs: 6.5.3 + safe-buffer: 5.2.1 + tough-cookie: 2.5.0 + tunnel-agent: 0.6.0 + uuid: 3.4.0 + dev: true + + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + dev: true + + /requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + dev: true + + /resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + dependencies: + resolve-from: 5.0.0 + dev: true + + /resolve-dir@1.0.1: + resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + global-modules: 1.0.0 + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + dependencies: + global-dirs: 0.1.1 + dev: true + + /resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} + dev: true + + /resolve@1.1.7: + resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + dev: true + + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + dev: true + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + /rfdc@1.3.1: + resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} + dev: true + + /rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + dependencies: + glob: 7.1.6 + dev: true + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.1.6 + dev: true + + /rimraf@4.4.1: + resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} + engines: {node: '>=14'} + hasBin: true + dependencies: + glob: 9.3.5 + dev: true + + /run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + + /rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + dependencies: + tslib: 2.6.2 + dev: true + + /safe-array-concat@1.1.0: + resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + + /safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + /safe-regex-test@1.0.2: + resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-regex: 1.1.4 + dev: true + + /safe-stable-stringify@2.4.3: + resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} + engines: {node: '>=10'} + dev: false + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} + dev: false + + /saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + dependencies: + xmlchars: 2.2.0 + dev: true + + /schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + dev: true + + /semver-compare@1.0.0: + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} + dev: true + + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + dev: true + + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + dev: true + + /semver@7.3.2: + resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} + engines: {node: '>=10'} + hasBin: true + dev: true + + /semver@7.3.7: + resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + + /semver@7.5.3: + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + dependencies: + randombytes: 2.1.0 + dev: true + + /set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + dev: true + + /set-function-length@1.2.0: + resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + + /setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + dev: true + + /shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + dependencies: + kind-of: 6.0.3 + dev: true + + /shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true + + /shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true + dependencies: + glob: 7.1.6 + interpret: 1.4.0 + rechoir: 0.6.2 + dev: true + + /shx@0.3.3: + resolution: {integrity: sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==} + engines: {node: '>=6'} + hasBin: true + dependencies: + minimist: 1.2.8 + shelljs: 0.8.5 + dev: true + + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + dev: true + + /sigstore@1.9.0: + resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + dependencies: + '@sigstore/bundle': 1.1.0 + '@sigstore/protobuf-specs': 0.2.1 + '@sigstore/sign': 1.0.0 + '@sigstore/tuf': 1.0.3 + make-fetch-happen: 11.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /simple-git@3.12.0: + resolution: {integrity: sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==} + dependencies: + '@kwsites/file-exists': 1.1.1 + '@kwsites/promise-deferred': 1.1.1 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + dependencies: + is-arrayish: 0.3.2 + dev: false + + /sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + dev: true + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + /slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true + + /smartwrap@2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} + hasBin: true + dependencies: + array.prototype.flat: 1.3.2 + breakword: 1.0.6 + grapheme-splitter: 1.0.4 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + yargs: 15.4.1 + dev: true + + /socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + socks: 2.7.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks@2.7.1: + resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} + engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + dependencies: + ip: 2.0.0 + smart-buffer: 4.2.0 + dev: true + + /sort-any@1.2.9: + resolution: {integrity: sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==} + dependencies: + lodash: 4.17.21 + dev: true + + /sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} + dependencies: + is-plain-obj: 1.1.0 + dev: true + + /source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map@0.5.6: + resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} + engines: {node: '>=0.10.0'} + dev: false + + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: true + + /spawn-wrap@2.0.0: + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} + dependencies: + foreground-child: 2.0.0 + is-windows: 1.0.2 + make-dir: 3.1.0 + rimraf: 3.0.2 + signal-exit: 3.0.7 + which: 2.0.2 + dev: true + + /spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + dependencies: + cross-spawn: 5.1.0 + signal-exit: 3.0.7 + dev: true + + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + dev: true + + /split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + dependencies: + readable-stream: 3.6.2 + dev: true + + /split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + dependencies: + through: 2.3.8 + dev: true + + /sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: true + + /sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + dev: true + + /ssri@10.0.5: + resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + minipass: 7.0.4 + dev: true + + /ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + minipass: 3.3.6 + dev: true + + /stack-generator@2.0.10: + resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} + dependencies: + stackframe: 1.3.4 + dev: false + + /stack-trace@0.0.10: + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + dev: false + + /stack-utils@1.0.5: + resolution: {integrity: sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==} + engines: {node: '>=8'} + dependencies: + escape-string-regexp: 2.0.0 + dev: true + + /stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + dependencies: + escape-string-regexp: 2.0.0 + dev: true + + /stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + dev: false + + /stacktrace-gps@3.1.2: + resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==} + dependencies: + source-map: 0.5.6 + stackframe: 1.3.4 + dev: false + + /stacktrace-js@2.0.2: + resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==} + dependencies: + error-stack-parser: 2.1.4 + stack-generator: 2.0.10 + stacktrace-gps: 3.1.2 + dev: false + + /stdin@0.0.1: + resolution: {integrity: sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ==} + dev: true + + /stream-transform@2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + dependencies: + mixme: 0.5.10 + dev: true + + /streamroller@2.2.3: + resolution: {integrity: sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==} + engines: {node: '>=8.0'} + deprecated: 2.x is no longer supported. Please upgrade to 3.x or higher. + dependencies: + date-format: 2.1.0 + debug: 4.3.4 + fs-extra: 8.1.0 + transitivePeerDependencies: + - supports-color + dev: false + + /string-argv@0.3.1: + resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} + engines: {node: '>=0.6.19'} + dev: true + + /string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + dev: true + + /string-replace-loader@3.1.0(webpack@5.89.0): + resolution: {integrity: sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==} + peerDependencies: + webpack: ^5 + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.89.0(esbuild@0.17.12) + dev: true + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + dev: true + + /string.prototype.padend@3.1.5: + resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + dependencies: + safe-buffer: 5.1.2 + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + + /stringify-object@3.3.0: + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} + dependencies: + get-own-enumerable-property-symbols: 3.0.2 + is-obj: 1.0.1 + is-regexp: 1.0.0 + dev: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-bom-buf@1.0.0: + resolution: {integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==} + engines: {node: '>=4'} + dependencies: + is-utf8: 0.2.1 + dev: false + + /strip-bom-stream@2.0.0: + resolution: {integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==} + engines: {node: '>=0.10.0'} + dependencies: + first-chunk-stream: 2.0.0 + strip-bom: 2.0.0 + dev: false + + /strip-bom@2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + dependencies: + is-utf8: 0.2.1 + dev: false + + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + + /strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + dev: true + + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + dependencies: + duplexer: 0.1.2 + minimist: 1.2.8 + through: 2.3.8 + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + + /supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true + + /table@6.8.1: + resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} + engines: {node: '>=10.0.0'} + dependencies: + ajv: 8.12.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + dev: true + + /tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: true + + /tar@6.1.11: + resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} + engines: {node: '>= 10'} + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 3.3.6 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + dev: true + + /temp-dir@1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + dev: true + + /temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + dev: true + + /tempfile@3.0.0: + resolution: {integrity: sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==} + engines: {node: '>=8'} + dependencies: + temp-dir: 2.0.0 + uuid: 3.4.0 + dev: true + + /term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + dev: true + + /terser-webpack-plugin@5.3.10(esbuild@0.17.12)(webpack@5.89.0): + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.22 + esbuild: 0.17.12 + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + terser: 5.27.0 + webpack: 5.89.0(esbuild@0.17.12) + dev: true + + /terser@5.27.0: + resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.5 + acorn: 8.11.3 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: true + + /test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.1.6 + minimatch: 3.1.2 + dev: true + + /text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true + + /text-hex@1.0.0: + resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} + dev: false + + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /textextensions@5.16.0: + resolution: {integrity: sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==} + engines: {node: '>=0.8'} + dev: false + + /thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + dependencies: + thenify: 3.3.1 + dev: true + + /thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + dependencies: + any-promise: 1.3.0 + dev: true + + /through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + dependencies: + readable-stream: 2.3.8 + xtend: 4.0.2 + dev: true + + /through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + dependencies: + readable-stream: 3.6.2 + dev: true + + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /timers-ext@0.1.7: + resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==} + dependencies: + es5-ext: 0.10.62 + next-tick: 1.1.0 + dev: true + + /tmp-promise@3.0.2: + resolution: {integrity: sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==} + dependencies: + tmp: 0.2.1 + dev: true + + /tmp@0.0.29: + resolution: {integrity: sha512-89PTqMWGDva+GqClOqBV9s3SMh7MA3Mq0pJUdAoHuF65YoE7O0LermaZkVfT5/Ngfo18H4eYiyG7zKOtnEbxsw==} + engines: {node: '>=0.4.0'} + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /tmp@0.2.1: + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} + dependencies: + rimraf: 3.0.2 + dev: true + + /tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + dev: true + + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: true + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + + /tough-cookie@2.5.0: + resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} + engines: {node: '>=0.8'} + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + dev: true + + /tough-cookie@4.1.3: + resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + engines: {node: '>=6'} + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + dev: true + + /tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + /tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + dependencies: + punycode: 2.3.1 + dev: true + + /traverse@0.3.9: + resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==} + dev: true + + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /triple-beam@1.3.0: + resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} + dev: false + + /ts-jest@29.0.5(@babel/core@7.23.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4): + resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@babel/core': 7.23.7 + bs-logger: 0.2.6 + esbuild: 0.17.12 + fast-json-stable-stringify: 2.1.0 + jest: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-util: 29.7.0 + json5: 2.2.3 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.7 + typescript: 4.9.4 + yargs-parser: 21.1.1 + dev: true + + /ts-node@8.5.2(typescript@4.9.4): + resolution: {integrity: sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A==} + engines: {node: '>=4.2.0'} + hasBin: true + peerDependencies: + typescript: '>=2.0' + dependencies: + arg: 4.1.3 + diff: 4.0.2 + make-error: 1.3.6 + source-map-support: 0.5.19 + typescript: 4.9.4 + yn: 3.1.1 + dev: true + + /tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + dependencies: + json5: 2.2.3 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + dev: true + + /tsutils@3.21.0(typescript@4.9.4): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + 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' + dependencies: + tslib: 1.14.1 + typescript: 4.9.4 + dev: true + + /tty-table@4.2.3: + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} + engines: {node: '>=8.0.0'} + hasBin: true + dependencies: + chalk: 4.1.2 + csv: 5.5.3 + kleur: 4.1.5 + smartwrap: 2.0.2 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + yargs: 17.7.2 + dev: true + + /tuf-js@1.1.7: + resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + '@tufjs/models': 1.0.4 + debug: 4.3.4 + make-fetch-happen: 11.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /tunnel@0.0.4: + resolution: {integrity: sha512-o9QYRJN5WgS8oCtqvwzzcfnzaTnDPr7HpUsQdSXscTyzXbjvl4wSHPTUKOKzEaDeQvOuyRtt3ui+ujM7x7TReQ==} + engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} + dev: true + + /tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + dev: true + + /type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type@1.2.0: + resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} + dev: true + + /type@2.7.2: + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + dev: true + + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + + /typed-rest-client@1.2.0: + resolution: {integrity: sha512-FrUshzZ1yxH8YwGR29PWWnfksLEILbWJydU7zfIRkyH7kAEzB62uMAl2WY6EyolWpLpVHeJGgQm45/MaruaHpw==} + dependencies: + tunnel: 0.0.4 + underscore: 1.8.3 + dev: true + + /typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + dependencies: + is-typedarray: 1.0.0 + dev: true + + /typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + dev: true + + /typescript@4.9.4: + resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + + /uc.micro@1.0.6: + resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + dev: true + + /uglify-js@3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + engines: {node: '>=0.8.0'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.5 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /underscore@1.8.3: + resolution: {integrity: sha512-5WsVTFcH1ut/kkhAaHf4PVgI8c7++GiVcpCGxPouI6ZVjsqPnSDf8h/8HtVqc0t4fzRXwnMK70EcZeAs3PIddg==} + dev: true + + /undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + dev: true + + /unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + unique-slug: 3.0.0 + dev: true + + /unique-filename@3.0.0: + resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + unique-slug: 4.0.0 + dev: true + + /unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + dev: true + + /unique-slug@4.0.0: + resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + imurmurhash: 0.1.4 + dev: true + + /universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + dev: true + + /universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + /universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true + + /universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + /unzipper@0.10.14: + resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==} + dependencies: + big-integer: 1.6.52 + binary: 0.3.0 + bluebird: 3.4.7 + buffer-indexof-polyfill: 1.0.2 + duplexer2: 0.1.4 + fstream: 1.0.12 + graceful-fs: 4.2.11 + listenercount: 1.0.1 + readable-stream: 2.3.8 + setimmediate: 1.0.5 + dev: true + + /upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + dev: true + + /update-browserslist-db@1.0.13(browserslist@4.22.2): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.2 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.3.1 + + /url-join@1.1.0: + resolution: {integrity: sha512-zz1wZk4Lb5PTVwZ3HWDmm8XnlPvmOof6/fjdDPA5yBrUcbtV64U6bV832Zf1BtU2WkBBWaUT46wCs+l0HP5nhg==} + dev: true + + /url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + /uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + dev: true + + /uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + dev: true + + /uuid@9.0.1: + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + hasBin: true + dev: true + + /v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + dev: true + + /v8-to-istanbul@9.2.0: + resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + engines: {node: '>=10.12.0'} + dependencies: + '@jridgewell/trace-mapping': 0.3.22 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + dev: true + + /validate-npm-package-name@3.0.0: + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + dependencies: + builtins: 1.0.3 + dev: true + + /validate-npm-package-name@5.0.0: + resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + builtins: 5.0.1 + dev: true + + /verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + dev: true + + /vinyl-file@3.0.0: + resolution: {integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==} + engines: {node: '>=4'} + dependencies: + graceful-fs: 4.2.11 + pify: 2.3.0 + strip-bom-buf: 1.0.0 + strip-bom-stream: 2.0.0 + vinyl: 2.2.1 + dev: false + + /vinyl@2.2.1: + resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==} + engines: {node: '>= 0.10'} + dependencies: + clone: 2.1.2 + clone-buffer: 1.0.0 + clone-stats: 1.0.0 + cloneable-readable: 1.1.3 + remove-trailing-separator: 1.1.0 + replace-ext: 1.0.1 + dev: false + + /vsce@1.83.0: + resolution: {integrity: sha512-gyF/xtCOFcKO+EvC0FQu5jPECHz2XKMWcw62gqwJJ22lVvlj58t49sWe1IGl9S5NpxCek+QMm6V9i/cDwGWs/Q==} + engines: {node: '>= 10'} + deprecated: vsce has been renamed to @vscode/vsce. Install using @vscode/vsce instead. + hasBin: true + dependencies: + azure-devops-node-api: 7.2.0 + chalk: 2.4.2 + cheerio: 1.0.0-rc.12 + commander: 6.2.1 + denodeify: 1.2.1 + glob: 7.1.6 + leven: 3.1.0 + lodash: 4.17.21 + markdown-it: 10.0.0 + mime: 1.6.0 + minimatch: 3.1.2 + osenv: 0.1.5 + parse-semver: 1.1.1 + read: 1.0.7 + semver: 5.7.2 + tmp: 0.0.29 + typed-rest-client: 1.2.0 + url-join: 1.1.0 + yauzl: 2.10.0 + yazl: 2.5.1 + dev: true + + /vscode-jsonrpc@8.0.2: + resolution: {integrity: sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==} + engines: {node: '>=14.0.0'} + + /vscode-languageclient@8.0.2: + resolution: {integrity: sha512-lHlthJtphG9gibGb/y72CKqQUxwPsMXijJVpHEC2bvbFqxmkj9LwQ3aGU9dwjBLqsX1S4KjShYppLvg1UJDF/Q==} + engines: {vscode: ^1.67.0} + dependencies: + minimatch: 3.1.2 + semver: 7.3.7 + vscode-languageserver-protocol: 3.17.2 + dev: false + + /vscode-languageserver-protocol@3.17.2: + resolution: {integrity: sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==} + dependencies: + vscode-jsonrpc: 8.0.2 + vscode-languageserver-types: 3.17.2 + + /vscode-languageserver-textdocument@1.0.1: + resolution: {integrity: sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==} + dev: false + + /vscode-languageserver-textdocument@1.0.11: + resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} + dev: false + + /vscode-languageserver-types@3.17.2: + resolution: {integrity: sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==} + + /vscode-languageserver@8.0.2: + resolution: {integrity: sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==} + hasBin: true + dependencies: + vscode-languageserver-protocol: 3.17.2 + + /vscode-test@1.6.1: + resolution: {integrity: sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA==} + engines: {node: '>=8.9.3'} + deprecated: This package has been renamed to @vscode/test-electron, please update to the new name + dependencies: + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + rimraf: 3.0.2 + unzipper: 0.10.14 + transitivePeerDependencies: + - supports-color + dev: true + + /vscode-uri@2.1.2: + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} + dev: false + + /w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + dependencies: + xml-name-validator: 4.0.0 + dev: true + + /walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + dependencies: + makeerror: 1.0.12 + dev: true + + /watchpack@2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + engines: {node: '>=10.13.0'} + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + dev: true + + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + dependencies: + defaults: 1.0.4 + dev: true + + /webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + /webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true + + /webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + dev: true + + /webpack@5.89.0(esbuild@0.17.12): + resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/wasm-edit': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + acorn: 8.11.3 + acorn-import-assertions: 1.9.0(acorn@8.11.3) + browserslist: 4.22.2 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.15.0 + es-module-lexer: 1.4.1 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.10(esbuild@0.17.12)(webpack@5.89.0) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true + + /whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + dependencies: + iconv-lite: 0.6.3 + dev: true + + /whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + dev: true + + /whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + dev: true + + /whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + dev: true + + /which-pm@2.0.0: + resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} + engines: {node: '>=8.15'} + dependencies: + load-yaml-file: 0.2.0 + path-exists: 4.0.0 + dev: true + + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which@3.0.1: + resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + dependencies: + string-width: 4.2.3 + dev: true + + /winston-transport@4.3.0: + resolution: {integrity: sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==} + engines: {node: '>= 6.4.0'} + dependencies: + logform: 2.6.0 + readable-stream: 2.3.8 + triple-beam: 1.3.0 + dev: false + + /winston-transport@4.6.0: + resolution: {integrity: sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==} + engines: {node: '>= 12.0.0'} + dependencies: + logform: 2.6.0 + readable-stream: 3.6.2 + triple-beam: 1.3.0 + dev: false + + /winston@3.3.3: + resolution: {integrity: sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==} + engines: {node: '>= 6.4.0'} + dependencies: + '@dabh/diagnostics': 2.0.3 + async: 3.2.5 + is-stream: 2.0.1 + logform: 2.6.0 + one-time: 1.0.0 + readable-stream: 3.6.2 + stack-trace: 0.0.10 + triple-beam: 1.3.0 + winston-transport: 4.6.0 + dev: false + + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + dev: true + + /wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + dependencies: + graceful-fs: 4.2.11 + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: true + + /write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + dev: true + + /write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: true + + /write-file-atomic@5.0.1: + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + imurmurhash: 0.1.4 + signal-exit: 4.1.0 + dev: true + + /write-json-file@3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} + dependencies: + detect-indent: 5.0.0 + graceful-fs: 4.2.11 + make-dir: 2.1.0 + pify: 4.0.1 + sort-keys: 2.0.0 + write-file-atomic: 2.4.3 + dev: true + + /write-pkg@4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} + dependencies: + sort-keys: 2.0.0 + type-fest: 0.4.1 + write-json-file: 3.2.0 + dev: true + + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + 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 + dev: true + + /xml-js@1.6.11: + resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} + hasBin: true + dependencies: + sax: 1.3.0 + dev: false + + /xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true + + /xml@1.0.1: + resolution: {integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==} + dev: true + + /xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true + + /xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + dev: true + + /y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + dev: true + + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + dev: true + + /yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yaml@2.2.2: + resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} + engines: {node: '>= 14'} + dev: false + + /yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + + /yargs-parser@20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + dev: true + + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true + + /yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 18.1.3 + dev: true + + /yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.4 + dev: true + + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + 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.8 + yargs-parser: 21.1.1 + dev: true + + /yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + dev: true + + /yazl@2.5.1: + resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} + dependencies: + buffer-crc32: 0.2.13 + dev: true + + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + dev: true + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 000000000..d696b117d --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,4 @@ +packages: + - 'packages/*' + - 'test-packages/*' + - '!**/test/**' diff --git a/test-packages/framework/tsconfig.json b/test-packages/framework/tsconfig.json index f1d45fd46..889987248 100644 --- a/test-packages/framework/tsconfig.json +++ b/test-packages/framework/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/test-packages/test-utils/tsconfig.json b/test-packages/test-utils/tsconfig.json index 7ecd7b544..7396fa714 100644 --- a/test-packages/test-utils/tsconfig.json +++ b/test-packages/test-utils/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/tsconfig.base.json b/tsconfig.base.json deleted file mode 100644 index 6bb1e6964..000000000 --- a/tsconfig.base.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "compileOnSave": true, - "compilerOptions": { - "composite": true, - "module": "commonjs", - "lib": ["es7"], - "target": "es2017", - "declaration": true, - "sourceMap": true, - "resolveJsonModule": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitAny": false, - "noImplicitReturns": true, - "esModuleInterop": true, - "skipLibCheck": true, - "types": ["node", "jest", "jest-extended"] - }, - "include": ["src/**/*", "api.d.ts", "global.d.ts"], - "exclude": ["node_modules/@types/vscode", "**/*-spec.ts"] -} diff --git a/tsconfig.json b/tsconfig.json index de0290af0..db832ffc9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,23 @@ { + "compilerOptions": { + "composite": true, + "declaration": true, + "declarationMap": true, + "esModuleInterop": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "lib": ["es6", "dom", "dom.iterable"], + "module": "commonjs", + "moduleResolution": "node", + "noEmit": false, + "sourceMap": true, + "strict": true, + "strictPropertyInitialization": false, + "target": "ES6", + "skipLibCheck": true, + "resolveJsonModule": true, + "useUnknownInCatchVariables": false + }, "references": [ { "path": "./test-packages/framework" @@ -54,6 +73,5 @@ { "path": "./packages/vscode-ui5-language-assistant" } - ], - "include": ["src/**/*"] + ] } diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 469d3a8e3..000000000 --- a/yarn.lock +++ /dev/null @@ -1,10741 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@apidevtools/json-schema-ref-parser@9.0.9": - version "9.0.9" - resolved "https://registry.yarnpkg.com/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz#d720f9256e3609621280584f2b47ae165359268b" - integrity sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w== - dependencies: - "@jsdevtools/ono" "^7.1.3" - "@types/json-schema" "^7.0.6" - call-me-maybe "^1.0.1" - js-yaml "^4.1.0" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.21.5": - version "7.21.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== - -"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.4.4", "@babel/core@^7.7.5": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" - integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== - 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" - -"@babel/generator@^7.21.5", "@babel/generator@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== - dependencies: - "@babel/types" "^7.21.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== - dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== - -"@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== - dependencies: - "@babel/types" "^7.21.4" - -"@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== - dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" - integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== - -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== - dependencies: - "@babel/types" "^7.21.5" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== - -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== - -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== - dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8": - version "7.21.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" - integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.7.2": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" - integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.7.2": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8" - integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - -"@babel/plugin-transform-modules-commonjs@^7.4.4": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz#d69fb947eed51af91de82e4708f676864e5e47bc" - integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ== - dependencies: - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helper-plugin-utils" "^7.21.5" - "@babel/helper-simple-access" "^7.21.5" - -"@babel/runtime@^7.11.2", "@babel/runtime@^7.20.1", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" - integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== - dependencies: - regenerator-runtime "^0.13.11" - -"@babel/template@^7.20.7", "@babel/template@^7.3.3": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/traverse@^7.21.5", "@babel/traverse@^7.7.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" - integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.5" - "@babel/types" "^7.21.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== - dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@changesets/apply-release-plan@^6.1.3": - version "6.1.3" - resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.1.3.tgz#3bcc0bd57ba00d50d20df7d0141f1a9b2134eaf7" - integrity sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/config" "^2.3.0" - "@changesets/get-version-range-type" "^0.3.2" - "@changesets/git" "^2.0.0" - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - detect-indent "^6.0.0" - fs-extra "^7.0.1" - lodash.startcase "^4.4.0" - outdent "^0.5.0" - prettier "^2.7.1" - resolve-from "^5.0.0" - semver "^5.4.1" - -"@changesets/assemble-release-plan@^5.2.3": - version "5.2.3" - resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.3.tgz#5ce6191c6e193d40b566a7b0e01690cfb106f4db" - integrity sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - semver "^5.4.1" - -"@changesets/changelog-git@^0.1.14": - version "0.1.14" - resolved "https://registry.yarnpkg.com/@changesets/changelog-git/-/changelog-git-0.1.14.tgz#852caa7727dcf91497c131d05bc2cd6248532ada" - integrity sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA== - dependencies: - "@changesets/types" "^5.2.1" - -"@changesets/cli@2.26.0": - version "2.26.0" - resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.26.0.tgz#f215ddb2b41574ffd0dda9cd77fac927ba048fd3" - integrity sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/apply-release-plan" "^6.1.3" - "@changesets/assemble-release-plan" "^5.2.3" - "@changesets/changelog-git" "^0.1.14" - "@changesets/config" "^2.3.0" - "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" - "@changesets/get-release-plan" "^3.0.16" - "@changesets/git" "^2.0.0" - "@changesets/logger" "^0.0.5" - "@changesets/pre" "^1.0.14" - "@changesets/read" "^0.5.9" - "@changesets/types" "^5.2.1" - "@changesets/write" "^0.2.3" - "@manypkg/get-packages" "^1.1.3" - "@types/is-ci" "^3.0.0" - "@types/semver" "^6.0.0" - ansi-colors "^4.1.3" - chalk "^2.1.0" - enquirer "^2.3.0" - external-editor "^3.1.0" - fs-extra "^7.0.1" - human-id "^1.0.2" - is-ci "^3.0.1" - meow "^6.0.0" - outdent "^0.5.0" - p-limit "^2.2.0" - preferred-pm "^3.0.0" - resolve-from "^5.0.0" - semver "^5.4.1" - spawndamnit "^2.0.0" - term-size "^2.1.0" - tty-table "^4.1.5" - -"@changesets/config@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.3.0.tgz#bff074d6492fa772cee139f9a04efa4cd56445bb" - integrity sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ== - dependencies: - "@changesets/errors" "^0.1.4" - "@changesets/get-dependents-graph" "^1.3.5" - "@changesets/logger" "^0.0.5" - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - fs-extra "^7.0.1" - micromatch "^4.0.2" - -"@changesets/errors@^0.1.4": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.1.4.tgz#f79851746c43679a66b383fdff4c012f480f480d" - integrity sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q== - dependencies: - extendable-error "^0.1.5" - -"@changesets/get-dependents-graph@^1.3.5": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.5.tgz#f94c6672d2f9a87aa35512eea74550585ba41c21" - integrity sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA== - dependencies: - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - chalk "^2.1.0" - fs-extra "^7.0.1" - semver "^5.4.1" - -"@changesets/get-release-plan@^3.0.16": - version "3.0.16" - resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.16.tgz#5d9cfc4ffda02c496ef0fde407210de8e3a0fb19" - integrity sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/assemble-release-plan" "^5.2.3" - "@changesets/config" "^2.3.0" - "@changesets/pre" "^1.0.14" - "@changesets/read" "^0.5.9" - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - -"@changesets/get-version-range-type@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz#8131a99035edd11aa7a44c341cbb05e668618c67" - integrity sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== - -"@changesets/git@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@changesets/git/-/git-2.0.0.tgz#8de57649baf13a86eb669a25fa51bcad5cea517f" - integrity sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/errors" "^0.1.4" - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - is-subdir "^1.1.1" - micromatch "^4.0.2" - spawndamnit "^2.0.0" - -"@changesets/logger@^0.0.5": - version "0.0.5" - resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.0.5.tgz#68305dd5a643e336be16a2369cb17cdd8ed37d4c" - integrity sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw== - dependencies: - chalk "^2.1.0" - -"@changesets/parse@^0.3.16": - version "0.3.16" - resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.3.16.tgz#f8337b70aeb476dc81745ab3294022909bc4a84a" - integrity sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg== - dependencies: - "@changesets/types" "^5.2.1" - js-yaml "^3.13.1" - -"@changesets/pre@^1.0.14": - version "1.0.14" - resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-1.0.14.tgz#9df73999a4d15804da7381358d77bb37b00ddf0f" - integrity sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/errors" "^0.1.4" - "@changesets/types" "^5.2.1" - "@manypkg/get-packages" "^1.1.3" - fs-extra "^7.0.1" - -"@changesets/read@^0.5.9": - version "0.5.9" - resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.5.9.tgz#a1b63a82b8e9409738d7a0f9cc39b6d7c28cbab0" - integrity sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/git" "^2.0.0" - "@changesets/logger" "^0.0.5" - "@changesets/parse" "^0.3.16" - "@changesets/types" "^5.2.1" - chalk "^2.1.0" - fs-extra "^7.0.1" - p-filter "^2.1.0" - -"@changesets/types@^4.0.1": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@changesets/types/-/types-4.1.0.tgz#fb8f7ca2324fd54954824e864f9a61a82cb78fe0" - integrity sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw== - -"@changesets/types@^5.2.1": - version "5.2.1" - resolved "https://registry.yarnpkg.com/@changesets/types/-/types-5.2.1.tgz#a228c48004aa8a93bce4be2d1d31527ef3bf21f6" - integrity sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg== - -"@changesets/write@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@changesets/write/-/write-0.2.3.tgz#baf6be8ada2a67b9aba608e251bfea4fdc40bc63" - integrity sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw== - dependencies: - "@babel/runtime" "^7.20.1" - "@changesets/types" "^5.2.1" - fs-extra "^7.0.1" - human-id "^1.0.2" - prettier "^2.7.1" - -"@chevrotain/cst-dts-gen@10.4.2": - version "10.4.2" - resolved "https://registry.yarnpkg.com/@chevrotain/cst-dts-gen/-/cst-dts-gen-10.4.2.tgz#a3426dba2c48cf6c90e49a0676aea750e8f43e88" - integrity sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ== - dependencies: - "@chevrotain/gast" "10.4.2" - "@chevrotain/types" "10.4.2" - lodash "4.17.21" - -"@chevrotain/gast@10.4.2": - version "10.4.2" - resolved "https://registry.yarnpkg.com/@chevrotain/gast/-/gast-10.4.2.tgz#236dc48e54cba16260c03bece25d5a3b6e2f5dab" - integrity sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA== - dependencies: - "@chevrotain/types" "10.4.2" - lodash "4.17.21" - -"@chevrotain/types@10.4.2": - version "10.4.2" - resolved "https://registry.yarnpkg.com/@chevrotain/types/-/types-10.4.2.tgz#18be6b7a3226b121fccec08c2ba8433219a6813c" - integrity sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw== - -"@chevrotain/utils@10.4.2": - version "10.4.2" - resolved "https://registry.yarnpkg.com/@chevrotain/utils/-/utils-10.4.2.tgz#87735732184cc5a2f8aad2f3454082294ef3c924" - integrity sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw== - -"@colors/colors@1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" - integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== - -"@commitlint/cli@11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-11.0.0.tgz#698199bc52afed50aa28169237758fa14a67b5d3" - integrity sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g== - dependencies: - "@babel/runtime" "^7.11.2" - "@commitlint/format" "^11.0.0" - "@commitlint/lint" "^11.0.0" - "@commitlint/load" "^11.0.0" - "@commitlint/read" "^11.0.0" - chalk "4.1.0" - core-js "^3.6.1" - get-stdin "8.0.0" - lodash "^4.17.19" - resolve-from "5.0.0" - resolve-global "1.0.0" - yargs "^15.1.0" - -"@commitlint/config-conventional@11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-11.0.0.tgz#3fa300a1b639273946de3c3f15e1cda518333422" - integrity sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA== - dependencies: - conventional-changelog-conventionalcommits "^4.3.1" - -"@commitlint/config-validator@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-17.4.4.tgz#d0742705719559a101d2ee49c0c514044af6d64d" - integrity sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg== - dependencies: - "@commitlint/types" "^17.4.4" - ajv "^8.11.0" - -"@commitlint/ensure@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-11.0.0.tgz#3e796b968ab5b72bc6f8a6040076406306c987fb" - integrity sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug== - dependencies: - "@commitlint/types" "^11.0.0" - lodash "^4.17.19" - -"@commitlint/execute-rule@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz#3ed60ab7a33019e58d90e2d891b75d7df77b4b4d" - integrity sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ== - -"@commitlint/execute-rule@^17.4.0": - version "17.4.0" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz#4518e77958893d0a5835babe65bf87e2638f6939" - integrity sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA== - -"@commitlint/format@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-11.0.0.tgz#ac47b0b9ca46540c0082c721b290794e67bdc51b" - integrity sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg== - dependencies: - "@commitlint/types" "^11.0.0" - chalk "^4.0.0" - -"@commitlint/is-ignored@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz#7b803eda56276dbe7fec51eb1510676198468f39" - integrity sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg== - dependencies: - "@commitlint/types" "^11.0.0" - semver "7.3.2" - -"@commitlint/lint@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-11.0.0.tgz#01e062cd1b0e7c3d756aa2c246462e0b6a3348a4" - integrity sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ== - dependencies: - "@commitlint/is-ignored" "^11.0.0" - "@commitlint/parse" "^11.0.0" - "@commitlint/rules" "^11.0.0" - "@commitlint/types" "^11.0.0" - -"@commitlint/load@>6.1.1": - version "17.5.0" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-17.5.0.tgz#be45dbbb50aaf5eb7e8e940e1e0d6171d1426bab" - integrity sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q== - dependencies: - "@commitlint/config-validator" "^17.4.4" - "@commitlint/execute-rule" "^17.4.0" - "@commitlint/resolve-extends" "^17.4.4" - "@commitlint/types" "^17.4.4" - "@types/node" "*" - chalk "^4.1.0" - cosmiconfig "^8.0.0" - cosmiconfig-typescript-loader "^4.0.0" - lodash.isplainobject "^4.0.6" - lodash.merge "^4.6.2" - lodash.uniq "^4.5.0" - resolve-from "^5.0.0" - ts-node "^10.8.1" - typescript "^4.6.4 || ^5.0.0" - -"@commitlint/load@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-11.0.0.tgz#f736562f0ffa7e773f8808fea93319042ee18211" - integrity sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg== - dependencies: - "@commitlint/execute-rule" "^11.0.0" - "@commitlint/resolve-extends" "^11.0.0" - "@commitlint/types" "^11.0.0" - chalk "4.1.0" - cosmiconfig "^7.0.0" - lodash "^4.17.19" - resolve-from "^5.0.0" - -"@commitlint/message@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-11.0.0.tgz#83554c3cbbc884fd07b473593bc3e94bcaa3ee05" - integrity sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA== - -"@commitlint/parse@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-11.0.0.tgz#d18b08cf67c35d02115207d7009306a2e8e7c901" - integrity sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A== - dependencies: - conventional-changelog-angular "^5.0.0" - conventional-commits-parser "^3.0.0" - -"@commitlint/read@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-11.0.0.tgz#f24240548c63587bba139fa5a364cab926077016" - integrity sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g== - dependencies: - "@commitlint/top-level" "^11.0.0" - fs-extra "^9.0.0" - git-raw-commits "^2.0.0" - -"@commitlint/resolve-extends@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz#158ecbe27d4a2a51d426111a01478e216fbb1036" - integrity sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw== - dependencies: - import-fresh "^3.0.0" - lodash "^4.17.19" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - -"@commitlint/resolve-extends@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz#8f931467dea8c43b9fe38373e303f7c220de6fdc" - integrity sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A== - dependencies: - "@commitlint/config-validator" "^17.4.4" - "@commitlint/types" "^17.4.4" - import-fresh "^3.0.0" - lodash.mergewith "^4.6.2" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - -"@commitlint/rules@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-11.0.0.tgz#bdb310cc6fc55c9f8d7d917a22b69055c535c375" - integrity sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA== - dependencies: - "@commitlint/ensure" "^11.0.0" - "@commitlint/message" "^11.0.0" - "@commitlint/to-lines" "^11.0.0" - "@commitlint/types" "^11.0.0" - -"@commitlint/to-lines@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-11.0.0.tgz#86dea151c10eea41e39ea96fa4de07839258a7fe" - integrity sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw== - -"@commitlint/top-level@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-11.0.0.tgz#bb2d1b6e5ed3be56874633b59e1f7de118c32783" - integrity sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA== - dependencies: - find-up "^5.0.0" - -"@commitlint/types@^11.0.0": - version "11.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-11.0.0.tgz#719cf05fcc1abb6533610a2e0f5dd1e61eac14fe" - integrity sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ== - -"@commitlint/types@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-17.4.4.tgz#1416df936e9aad0d6a7bbc979ecc31e55dade662" - integrity sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ== - dependencies: - chalk "^4.1.0" - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@dabh/diagnostics@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.3.tgz#7f7e97ee9a725dffc7808d93668cc984e1dc477a" - integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA== - dependencies: - colorspace "1.1.x" - enabled "2.0.x" - kuler "^2.0.0" - -"@esbuild/android-arm64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.12.tgz#15a8e2b407d03989b899e325151dc2e96d19c620" - integrity sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA== - -"@esbuild/android-arm@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.12.tgz#677a09297e1f4f37aba7b4fc4f31088b00484985" - integrity sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ== - -"@esbuild/android-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.12.tgz#b292729eef4e0060ae1941f6a021c4d2542a3521" - integrity sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w== - -"@esbuild/darwin-arm64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.12.tgz#efa35318df931da05825894e1787b976d55adbe3" - integrity sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg== - -"@esbuild/darwin-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.12.tgz#e7b54bb3f6dc81aadfd0485cd1623c648157e64d" - integrity sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA== - -"@esbuild/freebsd-arm64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.12.tgz#99a18a8579d6299c449566fe91d9b6a54cf2a591" - integrity sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ== - -"@esbuild/freebsd-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.12.tgz#0e090190fede307fb4022f671791a50dd5121abd" - integrity sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw== - -"@esbuild/linux-arm64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.12.tgz#7fe2a69f8a1a7153fa2b0f44aabcadb59475c7e0" - integrity sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg== - -"@esbuild/linux-arm@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.12.tgz#b87c76ebf1fe03e01fd6bb5cfc2f3c5becd5ee93" - integrity sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA== - -"@esbuild/linux-ia32@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.12.tgz#9e9357090254524d32e6708883a47328f3037858" - integrity sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw== - -"@esbuild/linux-loong64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.12.tgz#9deb605f9e2c82f59412ddfefb4b6b96d54b5b5b" - integrity sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA== - -"@esbuild/linux-mips64el@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.12.tgz#6ef170b974ddf5e6acdfa5b05f22b6e9dfd2b003" - integrity sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA== - -"@esbuild/linux-ppc64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.12.tgz#1638d3d4acf1d34aaf37cf8908c2e1cefed16204" - integrity sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A== - -"@esbuild/linux-riscv64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.12.tgz#135b6e9270a8e2de2b9094bb21a287517df520ef" - integrity sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA== - -"@esbuild/linux-s390x@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.12.tgz#21e40830770c5d08368e300842bde382ce97d615" - integrity sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g== - -"@esbuild/linux-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.12.tgz#76c1c199871d48e1aaa47a762fb9e0dca52e1f7a" - integrity sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA== - -"@esbuild/netbsd-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.12.tgz#c7c3b3017a4b938c76c35f66af529baf62eac527" - integrity sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg== - -"@esbuild/openbsd-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.12.tgz#05d04217d980e049001afdbeacbb58d31bb5cefb" - integrity sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA== - -"@esbuild/sunos-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.12.tgz#cf3862521600e4eb6c440ec3bad31ed40fb87ef3" - integrity sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg== - -"@esbuild/win32-arm64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.12.tgz#43dd7fb5be77bf12a1550355ab2b123efd60868e" - integrity sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg== - -"@esbuild/win32-ia32@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.12.tgz#9940963d0bff4ea3035a84e2b4c6e41c5e6296eb" - integrity sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng== - -"@esbuild/win32-x64@0.17.12": - version "0.17.12" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz#3a11d13e9a5b0c05db88991b234d8baba1f96487" - integrity sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw== - -"@eslint/eslintrc@^0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz#d736d6963d7003b6514e6324bec9c602ac340318" - integrity sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg== - dependencies: - ajv "^6.12.4" - debug "^4.1.1" - espree "^7.3.0" - globals "^12.1.0" - ignore "^4.0.6" - import-fresh "^3.2.1" - js-yaml "^3.13.1" - lodash "^4.17.20" - minimatch "^3.0.4" - strip-json-comments "^3.1.1" - -"@gar/promisify@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@hutson/parse-repository-url@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340" - integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== - -"@isaacs/cliui@^8.0.2": - version "8.0.2" - resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" - integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== - 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" - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" - integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== - dependencies: - "@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@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" - integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== - 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" - "@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@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" - integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== - dependencies: - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - jest-mock "^29.5.0" - -"@jest/expect-utils@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" - integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== - dependencies: - jest-get-type "^29.4.3" - -"@jest/expect@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" - integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== - dependencies: - expect "^29.5.0" - jest-snapshot "^29.5.0" - -"@jest/fake-timers@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" - integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== - dependencies: - "@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@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" - integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/types" "^29.5.0" - jest-mock "^29.5.0" - -"@jest/reporters@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" - integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== - 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" - "@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" - -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== - dependencies: - "@sinclair/typebox" "^0.25.16" - -"@jest/schemas@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" - integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== - dependencies: - "@sinclair/typebox" "^0.27.8" - -"@jest/source-map@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" - integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== - dependencies: - "@jridgewell/trace-mapping" "^0.3.15" - callsites "^3.0.0" - graceful-fs "^4.2.9" - -"@jest/test-result@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" - integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== - dependencies: - "@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@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" - integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== - dependencies: - "@jest/test-result" "^29.5.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - slash "^3.0.0" - -"@jest/transform@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== - dependencies: - "@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" - -"@jest/types@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" - integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^15.0.0" - chalk "^3.0.0" - -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== - dependencies: - "@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@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@jsdevtools/ono@^7.1.3": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.3.tgz#9df03bbd7c696a5c58885c34aa06da41c8543796" - integrity sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg== - -"@kwsites/file-exists@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@kwsites/file-exists/-/file-exists-1.1.1.tgz#ad1efcac13e1987d8dbaf235ef3be5b0d96faa99" - integrity sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw== - dependencies: - debug "^4.1.1" - -"@kwsites/promise-deferred@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz#8ace5259254426ccef57f3175bc64ed7095ed919" - integrity sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== - -"@lerna/child-process@7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-7.3.0.tgz#c56488a8a881f22a64793bf9339c5a2450a18559" - integrity sha512-rA+fGUo2j/LEq6w1w8s6oVikLbJTWoIDVpYMc7bUCtwDOUuZKMQiRtjmpavY3fTm7ltu42f4AKflc2A70K4wvA== - dependencies: - chalk "^4.1.0" - execa "^5.0.0" - strong-log-transformer "^2.1.0" - -"@lerna/create@7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-7.3.0.tgz#5438c231f617b8e825731390d394f8684af471d5" - integrity sha512-fjgiKjg9VXwQ4ZKKsrXICEKRiC3yo6+FprR0mc55uz0s5e9xupoSGLobUTTBdE7ncNB3ibqml8dfaAn/+ESajQ== - dependencies: - "@lerna/child-process" "7.3.0" - "@npmcli/run-script" "6.0.2" - "@nx/devkit" ">=16.5.1 < 17" - "@octokit/plugin-enterprise-rest" "6.0.1" - "@octokit/rest" "19.0.11" - byte-size "8.1.1" - chalk "4.1.0" - clone-deep "4.0.1" - cmd-shim "6.0.1" - columnify "1.6.0" - conventional-changelog-core "5.0.1" - conventional-recommended-bump "7.0.1" - cosmiconfig "^8.2.0" - dedent "0.7.0" - execa "5.0.0" - fs-extra "^11.1.1" - get-stream "6.0.0" - git-url-parse "13.1.0" - glob-parent "5.1.2" - globby "11.1.0" - graceful-fs "4.2.11" - has-unicode "2.0.1" - ini "^1.3.8" - init-package-json "5.0.0" - inquirer "^8.2.4" - is-ci "3.0.1" - is-stream "2.0.0" - js-yaml "4.1.0" - libnpmpublish "7.3.0" - load-json-file "6.2.0" - lodash "^4.17.21" - make-dir "4.0.0" - minimatch "3.0.5" - multimatch "5.0.0" - node-fetch "2.6.7" - npm-package-arg "8.1.1" - npm-packlist "5.1.1" - npm-registry-fetch "^14.0.5" - npmlog "^6.0.2" - nx ">=16.5.1 < 17" - p-map "4.0.0" - p-map-series "2.1.0" - p-queue "6.6.2" - p-reduce "^2.1.0" - pacote "^15.2.0" - pify "5.0.0" - read-cmd-shim "4.0.0" - read-package-json "6.0.4" - resolve-from "5.0.0" - rimraf "^4.4.1" - semver "^7.3.4" - signal-exit "3.0.7" - slash "^3.0.0" - ssri "^9.0.1" - strong-log-transformer "2.1.0" - tar "6.1.11" - temp-dir "1.0.0" - upath "2.0.1" - uuid "^9.0.0" - validate-npm-package-license "^3.0.4" - validate-npm-package-name "5.0.0" - write-file-atomic "5.0.1" - write-pkg "4.0.0" - yargs "16.2.0" - yargs-parser "20.2.4" - -"@manypkg/find-root@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" - integrity sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== - dependencies: - "@babel/runtime" "^7.5.5" - "@types/node" "^12.7.1" - find-up "^4.1.0" - fs-extra "^8.1.0" - -"@manypkg/get-packages@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@manypkg/get-packages/-/get-packages-1.1.3.tgz#e184db9bba792fa4693de4658cfb1463ac2c9c47" - integrity sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A== - dependencies: - "@babel/runtime" "^7.5.5" - "@changesets/types" "^4.0.1" - "@manypkg/find-root" "^1.1.0" - fs-extra "^8.1.0" - globby "^11.0.0" - read-yaml-file "^1.1.0" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@npmcli/fs@^2.1.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== - dependencies: - "@gar/promisify" "^1.1.3" - semver "^7.3.5" - -"@npmcli/fs@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e" - integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w== - dependencies: - semver "^7.3.5" - -"@npmcli/git@^4.0.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.1.0.tgz#ab0ad3fd82bc4d8c1351b6c62f0fa56e8fe6afa6" - integrity sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ== - dependencies: - "@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" - -"@npmcli/installed-package-contents@^2.0.1": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz#bfd817eccd9e8df200919e73f57f9e3d9e4f9e33" - integrity sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ== - dependencies: - npm-bundled "^3.0.0" - npm-normalize-package-bin "^3.0.0" - -"@npmcli/move-file@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@npmcli/node-gyp@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" - integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== - -"@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1": - version "6.0.2" - resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz#c8bc4fa2bd0f01cb979d8798ba038f314cfa70f2" - integrity sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg== - dependencies: - which "^3.0.0" - -"@npmcli/run-script@6.0.2", "@npmcli/run-script@^6.0.0": - version "6.0.2" - resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-6.0.2.tgz#a25452d45ee7f7fb8c16dfaf9624423c0c0eb885" - integrity sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA== - dependencies: - "@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" - -"@nrwl/devkit@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-16.9.1.tgz#e8b42ac23926a241338b173f3eed66757d75e530" - integrity sha512-+iR7tg+LOrGWAGmGv0hr45hYUOeKjK/Jm6WV3Ldmx6I7LaaYM5Fu6Ev2KXL669QMzLJpg3kqgKQsneWbFT3MAw== - dependencies: - "@nx/devkit" "16.9.1" - -"@nrwl/tao@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-16.9.1.tgz#84e9be4002792cf5a2cf45f4e0733ac7091d732a" - integrity sha512-KsRBRAE5mSP83ZjO9cPW6ZQZWOtkMfCBih/WE9qpaiHn+hCydtYStyAO2QSic4tHVV+8VpPUQWYnpf5rhkNzWg== - dependencies: - nx "16.9.1" - tslib "^2.3.0" - -"@nx/devkit@16.9.1", "@nx/devkit@>=16.5.1 < 17": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-16.9.1.tgz#819f355849eecde24b40634150af3038d2652570" - integrity sha512-jQMLX8pUKsOIk0tLFzJms5awPxKfJEi0uxY7+IUfRNHcnDkOFiv6gf1QqJ3pobmgwBdbC6Nv/dhDP3JT2wA1gA== - dependencies: - "@nrwl/devkit" "16.9.1" - ejs "^3.1.7" - enquirer "~2.3.6" - ignore "^5.0.4" - semver "7.5.3" - tmp "~0.2.1" - tslib "^2.3.0" - -"@nx/nx-darwin-arm64@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.9.1.tgz#aff318f99e2b53af480803d00322edcc2037ed5f" - integrity sha512-JWGrPxxt3XjgIYzvnaNAeNmK24wyF6yEE1bV+wnnKzd7yavVps3c2TOVE/AT4sgvdVj3xFzztyixYGV58tCYrg== - -"@nx/nx-darwin-x64@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-16.9.1.tgz#a2095799f9fb67988f4f88eb17f93f73a6b5629f" - integrity sha512-b1Hw1AmKrR+Kp361WTiKC1RFoQwERyW9R/9XJGNIdgtr+V2wa775eCEdxB9r9mwCqyEmM9iVadpRHPaFSAfQfQ== - -"@nx/nx-freebsd-x64@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.9.1.tgz#ea7ff8ef1e70b0185b2cb01085d37fed068da6e6" - integrity sha512-jscl/Xu86tLQYbC8b1wy9FjEgGyuLpYnvP9d+34AHDi6CbCNSodbv93xFDlfYcLOeOD/mJXqR1Ru/1MF86OB5A== - -"@nx/nx-linux-arm-gnueabihf@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.9.1.tgz#93728e8fa785ed2c69fced92372cc6faf0340d0d" - integrity sha512-NMAyxjYv9y4LwzU76htcPWfdmRoN/ZziTNKT3jaMbn38x4e7DoXYs9GGh267z45yWHscQWoV0v+X39LmB819aQ== - -"@nx/nx-linux-arm64-gnu@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.9.1.tgz#bde082e427ff5e108c8f611f6a37fc5e56bc27dc" - integrity sha512-A5UbK5rFhqzs3kMiEKA+xr3LAJsQBA97VDyMH6WPraSl+XRIt4EePx0MyEqo1pnEgeuoOCvR1tjDot5E7ldInw== - -"@nx/nx-linux-arm64-musl@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.9.1.tgz#d090e0ef5645854da02e6bea58d908dedea286bb" - integrity sha512-eIn5PnKH7Y/u1LuanAM0wPNdcb9Z7seDjQzQ0hFMCCvV75Z8A02ztbiueLGaEsDLx35MPBdBmuyo4hsmvmLgpg== - -"@nx/nx-linux-x64-gnu@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.9.1.tgz#40f808011b59003735e33bd5bae12bd19b3120b5" - integrity sha512-MMvhoS1pZjyIjwfeZNH2dDZuVF2xxURLTXC4UmmpY/wOWCuXhvD7QUv5A5QShxfaVXmXceo/fGLK+/Qm5e2+7g== - -"@nx/nx-linux-x64-musl@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.9.1.tgz#7740b213837e2479fc278f8176344bd2a765919f" - integrity sha512-ca0d00YCHo0+OIT80MZdtseJj9wTlWMucmdm0OCXLf/l+Dma4MO4LR09WMH2VIpjoz4Gj7+xP0QtKtH4fWFD8Q== - -"@nx/nx-win32-arm64-msvc@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.9.1.tgz#98f2daf489ffa73a5fa1e7bbb477438988c090fa" - integrity sha512-UIDAWH6/LfouFaXLJWyZKggzH/698lSrLkEE1fa9VrrGEOhumk7MPAVQc/XxgkWgPDDR1TJl0ij+J1bOREn73Q== - -"@nx/nx-win32-x64-msvc@16.9.1": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.9.1.tgz#5d2ad9bd578b807e1e9c4174106e6c8b78a47efe" - integrity sha512-isnElU5RaQEGPAJhx6VNY0P/avD79s146kmZOn1Ff5fAjReqR7kRxSWXQOdIqc6nPH9Y0c9wNwEAuhBJoor+Mw== - -"@octokit/auth-token@^3.0.0": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.3.tgz#ce7e48a3166731f26068d7a7a7996b5da58cbe0c" - integrity sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA== - dependencies: - "@octokit/types" "^9.0.0" - -"@octokit/core@^4.2.1": - version "4.2.4" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907" - integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ== - dependencies: - "@octokit/auth-token" "^3.0.0" - "@octokit/graphql" "^5.0.0" - "@octokit/request" "^6.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - before-after-hook "^2.2.0" - universal-user-agent "^6.0.0" - -"@octokit/endpoint@^7.0.0": - version "7.0.5" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.5.tgz#2bb2a911c12c50f10014183f5d596ce30ac67dd1" - integrity sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA== - dependencies: - "@octokit/types" "^9.0.0" - is-plain-object "^5.0.0" - universal-user-agent "^6.0.0" - -"@octokit/graphql@^5.0.0": - version "5.0.5" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.5.tgz#a4cb3ea73f83b861893a6370ee82abb36e81afd2" - integrity sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ== - dependencies: - "@octokit/request" "^6.0.0" - "@octokit/types" "^9.0.0" - universal-user-agent "^6.0.0" - -"@octokit/openapi-types@^17.1.2": - version "17.2.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-17.2.0.tgz#f1800b5f9652b8e1b85cc6dfb1e0dc888810bdb5" - integrity sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ== - -"@octokit/openapi-types@^18.0.0": - version "18.0.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz#f43d765b3c7533fd6fb88f3f25df079c24fccf69" - integrity sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw== - -"@octokit/plugin-enterprise-rest@6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437" - integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== - -"@octokit/plugin-paginate-rest@^6.1.2": - version "6.1.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8" - integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ== - dependencies: - "@octokit/tsconfig" "^1.0.2" - "@octokit/types" "^9.2.3" - -"@octokit/plugin-request-log@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" - integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== - -"@octokit/plugin-rest-endpoint-methods@^7.1.2": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz#37a84b171a6cb6658816c82c4082ac3512021797" - integrity sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA== - dependencies: - "@octokit/types" "^10.0.0" - -"@octokit/request-error@^3.0.0": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" - integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== - dependencies: - "@octokit/types" "^9.0.0" - deprecation "^2.0.0" - once "^1.4.0" - -"@octokit/request@^6.0.0": - version "6.2.5" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.5.tgz#7beef1065042998f7455973ef3f818e7b84d6ec2" - integrity sha512-z83E8UIlPNaJUsXpjD8E0V5o/5f+vJJNbNcBwVZsX3/vC650U41cOkTLjq4PKk9BYonQGOnx7N17gvLyNjgGcQ== - dependencies: - "@octokit/endpoint" "^7.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - is-plain-object "^5.0.0" - node-fetch "^2.6.7" - universal-user-agent "^6.0.0" - -"@octokit/rest@19.0.11": - version "19.0.11" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.11.tgz#2ae01634fed4bd1fca5b642767205ed3fd36177c" - integrity sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw== - dependencies: - "@octokit/core" "^4.2.1" - "@octokit/plugin-paginate-rest" "^6.1.2" - "@octokit/plugin-request-log" "^1.0.4" - "@octokit/plugin-rest-endpoint-methods" "^7.1.2" - -"@octokit/tsconfig@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7" - integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA== - -"@octokit/types@^10.0.0": - version "10.0.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-10.0.0.tgz#7ee19c464ea4ada306c43f1a45d444000f419a4a" - integrity sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg== - dependencies: - "@octokit/openapi-types" "^18.0.0" - -"@octokit/types@^9.0.0": - version "9.2.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.2.2.tgz#d111d33928f288f48083bfe49d8a9a5945e67db1" - integrity sha512-9BjDxjgQIvCjNWZsbqyH5QC2Yni16oaE6xL+8SUBMzcYPF4TGQBXGA97Cl3KceK9mwiNMb1mOYCz6FbCCLEL+g== - dependencies: - "@octokit/openapi-types" "^17.1.2" - -"@octokit/types@^9.2.3": - version "9.3.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5" - integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== - dependencies: - "@octokit/openapi-types" "^18.0.0" - -"@parcel/watcher@2.0.4": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.0.4.tgz#f300fef4cc38008ff4b8c29d92588eced3ce014b" - integrity sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg== - dependencies: - node-addon-api "^3.2.1" - node-gyp-build "^4.3.0" - -"@pkgjs/parseargs@^0.11.0": - version "0.11.0" - resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" - integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== - -"@prettier/plugin-xml@2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz#2bc2ae667aa817369fdb939aa7d36ea88105483d" - integrity sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew== - dependencies: - "@xml-tools/parser" "^1.0.11" - prettier ">=2.4.0" - -"@sap-ux/annotation-converter@0.5.20": - version "0.5.20" - resolved "https://registry.yarnpkg.com/@sap-ux/annotation-converter/-/annotation-converter-0.5.20.tgz#63e118109932488ecc4cc50ce0814c29f23bf260" - integrity sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw== - -"@sap-ux/edmx-parser@0.5.13": - version "0.5.13" - resolved "https://registry.yarnpkg.com/@sap-ux/edmx-parser/-/edmx-parser-0.5.13.tgz#099d8a8f0df594680d2aca45412bed72586d4db9" - integrity sha512-V58Iul9fSSMjWs1x7CimGyfnojnYTKcutGstRN4gmz6t4ijXsXQrTMzVetDbZ3EA2UznZtzreVF/8/gXC5MK3A== - dependencies: - xml-js "1.6.11" - -"@sap-ux/project-access@1.9.1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@sap-ux/project-access/-/project-access-1.9.1.tgz#0d03683f7d8d0a444d19a9fe8a6927d1615ff728" - integrity sha512-ObLlzem77Vpe7C6I8UimPPQW7LrSq4zQ2PaYfUaLqamrG2cu9Knl+/xRBZz51ZbHWbN/2I2cdZRBfG695PewXw== - dependencies: - "@sap-ux/ui5-config" "0.18.2" - findit2 "2.2.3" - mem-fs "2.1.0" - mem-fs-editor "9.4.0" - -"@sap-ux/ui5-config@0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@sap-ux/ui5-config/-/ui5-config-0.18.2.tgz#ef5f5257c39e8e9895b16e265487b52ade180d65" - integrity sha512-s/UsykJXbQIMmpcNjI2ChAIYBnQvnjJlp5n5QpT4XRHHwstExz2YCWz2vThXuF1GmwsCMzSjmhF+zTmGbTJ11w== - dependencies: - "@sap-ux/yaml" "0.13.7" - lodash "4.17.21" - semver "7.5.3" - -"@sap-ux/vocabularies-types@0.6.8": - version "0.6.8" - resolved "https://registry.yarnpkg.com/@sap-ux/vocabularies-types/-/vocabularies-types-0.6.8.tgz#abcdebfd986c249f7131d5e9085b6ff4bffb4876" - integrity sha512-58b1/E9hxSsIit9NMQ9oXCYNUaOT7kbQU1OKhAPVp3Pg2BMbkRo5p1SX6BSan4XmONUpao7yRUVZEG0dspR5qg== - -"@sap-ux/vocabularies-types@0.7.4": - version "0.7.4" - resolved "https://registry.yarnpkg.com/@sap-ux/vocabularies-types/-/vocabularies-types-0.7.4.tgz#66388bc5368be7edee2502a726e019cd8638c5c3" - integrity sha512-JC2s7P7EOYvnubxqDIJYdZXA/aNvK78XqvB1sMyI4z+rf/mgTTID7mIf/2J3rSwHw+GjVrDK+UvSX3vJhomKew== - -"@sap-ux/yaml@0.13.7": - version "0.13.7" - resolved "https://registry.yarnpkg.com/@sap-ux/yaml/-/yaml-0.13.7.tgz#b3316c665e15ff48510abdac8cbf7b9fd7739986" - integrity sha512-4638D6TyaBA43lnhWtkXVM2xFwgDh3u8DEsTmCEvvbh6SQsE09t/eheRSoBD1ryZVG9NmmasY2tMgy3JxEPV5A== - dependencies: - lodash "4.17.21" - yaml "2.2.2" - -"@sap/swa-for-sapbas-vsx@1.1.9": - version "1.1.9" - resolved "https://registry.yarnpkg.com/@sap/swa-for-sapbas-vsx/-/swa-for-sapbas-vsx-1.1.9.tgz#c180dcf7e25abc443127df19332a2f2d0a6c780c" - integrity sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw== - dependencies: - esm "3.2.25" - lodash "4.17.20" - matomo-tracker "2.2.2" - -"@sigstore/protobuf-specs@^0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" - integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== - -"@sigstore/tuf@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.0.tgz#13b69323e7bf8de458cd6c952c57acd1169772a5" - integrity sha512-bLzi9GeZgMCvjJeLUIfs8LJYCxrPRA8IXQkzUtaFKKVPTz0mucRyqFcV2U20yg9K+kYAD0YSitzGfRZCFLjdHQ== - dependencies: - "@sigstore/protobuf-specs" "^0.1.0" - make-fetch-happen "^11.0.1" - tuf-js "^1.1.3" - -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== - -"@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== - -"@sinonjs/commons@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" - integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^10.0.2": - version "10.2.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz#b3e322a34c5f26e3184e7f6115695f299c1b1194" - integrity sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg== - dependencies: - "@sinonjs/commons" "^3.0.0" - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== - -"@tufjs/canonical-json@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31" - integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ== - -"@tufjs/models@1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef" - integrity sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A== - dependencies: - "@tufjs/canonical-json" "1.0.0" - minimatch "^9.0.0" - -"@types/babel__core@^7.1.14": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" - integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== - dependencies: - "@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.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.18.5" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80" - integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q== - dependencies: - "@babel/types" "^7.3.0" - -"@types/chai@*": - version "4.3.5" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.5.tgz#ae69bcbb1bebb68c4ac0b11e9d8ed04526b3562b" - integrity sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng== - -"@types/chai@4.2.14": - version "4.2.14" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.14.tgz#44d2dd0b5de6185089375d976b4ec5caf6861193" - integrity sha512-G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ== - -"@types/deep-equal-in-any-order@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/deep-equal-in-any-order/-/deep-equal-in-any-order-1.0.1.tgz#0559d855797a5034e187f248b23a4490e5444f2e" - integrity sha512-hUWUUE53WjKfcCncSmWmNXVNNT+0Iz7gYFnov3zdCXrX3Thxp1Cnmfd5LwWOeCVUV5LhpiFgS05vaAG72doo9w== - -"@types/deep-freeze-strict@1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@types/deep-freeze-strict/-/deep-freeze-strict-1.1.0.tgz#447a6a2576191344aa42310131dd3df5c41492c4" - integrity sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw== - -"@types/fs-extra@9.0.11": - version "9.0.11" - resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.11.tgz#8cc99e103499eab9f347dbc6ca4e99fb8d2c2b87" - integrity sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA== - dependencies: - "@types/node" "*" - -"@types/glob@*": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc" - integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== - dependencies: - "@types/minimatch" "^5.1.2" - "@types/node" "*" - -"@types/graceful-fs@^4.1.3": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" - integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== - dependencies: - "@types/node" "*" - -"@types/is-ci@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/is-ci/-/is-ci-3.0.0.tgz#7e8910af6857601315592436f030aaa3ed9783c3" - integrity sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ== - dependencies: - ci-info "^3.1.0" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^1.1.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" - integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== - dependencies: - "@types/istanbul-lib-coverage" "*" - "@types/istanbul-lib-report" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest-specific-snapshot@0.5.5": - version "0.5.5" - resolved "https://registry.yarnpkg.com/@types/jest-specific-snapshot/-/jest-specific-snapshot-0.5.5.tgz#47ce738870be99898ed6d7b08dbf0240c74ae553" - integrity sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A== - dependencies: - "@types/jest" "*" - -"@types/jest@*": - version "29.5.1" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.1.tgz#83c818aa9a87da27d6da85d3378e5a34d2f31a47" - integrity sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ== - dependencies: - expect "^29.0.0" - pretty-format "^29.0.0" - -"@types/jest@29.2.6": - version "29.2.6" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.2.6.tgz#1d43c8e533463d0437edef30b2d45d5aa3d95b0a" - integrity sha512-XEUC/Tgw3uMh6Ho8GkUtQ2lPhY5Fmgyp3TdlkTJs1W9VgNxs+Ow/x3Elh8lHQKqCbZL0AubQuqWjHVT033Hhrw== - dependencies: - expect "^29.0.0" - pretty-format "^29.0.0" - -"@types/js-yaml@4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.5.tgz#738dd390a6ecc5442f35e7f03fa1431353f7e138" - integrity sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA== - -"@types/jsdom@^20.0.0": - version "20.0.1" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-20.0.1.tgz#07c14bc19bd2f918c1929541cdaacae894744808" - integrity sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ== - dependencies: - "@types/node" "*" - "@types/tough-cookie" "*" - parse5 "^7.0.0" - -"@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/klaw-sync@6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@types/klaw-sync/-/klaw-sync-6.0.0.tgz#ff0b36601efaaa109d513c4ced109311fd06ba36" - integrity sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww== - dependencies: - "@types/node" "*" - -"@types/lodash@4.14.166": - version "4.14.166" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.166.tgz#07e7f2699a149219dbc3c35574f126ec8737688f" - integrity sha512-A3YT/c1oTlyvvW/GQqG86EyqWNrT/tisOIh2mW3YCgcx71TNjiTZA3zYZWA5BCmtsOTXjhliy4c4yEkErw6njA== - -"@types/lodash@4.14.168": - version "4.14.168" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.168.tgz#fe24632e79b7ade3f132891afff86caa5e5ce008" - integrity sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q== - -"@types/minimatch@^3.0.3": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" - integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== - -"@types/minimatch@^5.1.2": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== - -"@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== - -"@types/node-fetch@2.5.10": - version "2.5.10" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.10.tgz#9b4d4a0425562f9fcea70b12cb3fcdd946ca8132" - integrity sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node@*": - version "20.2.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.2.1.tgz#de559d4b33be9a808fd43372ccee822c70f39704" - integrity sha512-DqJociPbZP1lbZ5SQPk4oag6W7AyaGMO6gSfRwq3PWl4PXTwJpRQJhDq4W0kzrg3w6tJ1SwlvGZ5uKFHY13LIg== - -"@types/node@^12.7.1": - version "12.20.55" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" - integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== - -"@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/prettier@^1.19.0": - version "1.19.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f" - integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ== - -"@types/prettier@^2.1.5": - version "2.7.2" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0" - integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg== - -"@types/rimraf@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/rimraf/-/rimraf-3.0.0.tgz#b9d03f090ece263671898d57bb7bb007023ac19f" - integrity sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ== - dependencies: - "@types/glob" "*" - "@types/node" "*" - -"@types/semver@7.3.12": - version "7.3.12" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.12.tgz#920447fdd78d76b19de0438b7f60df3c4a80bf1c" - integrity sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A== - -"@types/semver@^6.0.0": - version "6.2.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" - integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== - -"@types/sinon-chai@3.2.5": - version "3.2.5" - resolved "https://registry.yarnpkg.com/@types/sinon-chai/-/sinon-chai-3.2.5.tgz#df21ae57b10757da0b26f512145c065f2ad45c48" - integrity sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ== - dependencies: - "@types/chai" "*" - "@types/sinon" "*" - -"@types/sinon@*": - version "10.0.15" - resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-10.0.15.tgz#513fded9c3cf85e589bbfefbf02b2a0541186b48" - integrity sha512-3lrFNQG0Kr2LDzvjyjB6AMJk4ge+8iYhQfdnSwIwlG88FUOV43kPcQqDZkDa/h3WSZy6i8Fr0BSjfQtB1B3xuQ== - dependencies: - "@types/sinonjs__fake-timers" "*" - -"@types/sinon@9.0.10": - version "9.0.10" - resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.10.tgz#7fb9bcb6794262482859cab66d59132fca18fcf7" - integrity sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA== - dependencies: - "@types/sinonjs__fake-timers" "*" - -"@types/sinonjs__fake-timers@*": - version "8.1.2" - resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.2.tgz#bf2e02a3dbd4aecaf95942ecd99b7402e03fad5e" - integrity sha512-9GcLXF0/v3t80caGs5p2rRfkB+a8VBGLJZVih6CNFkx8IZ994wiKKLSRs9nuFwk1HevWs/1mnUmkApGrSGsShA== - -"@types/stack-utils@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" - integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== - -"@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== - -"@types/tmp@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.2.0.tgz#e3f52b4d7397eaa9193592ef3fdd44dc0af4298c" - integrity sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ== - -"@types/tough-cookie@*": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397" - integrity sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw== - -"@types/triple-beam@^1.3.2": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/triple-beam/-/triple-beam-1.3.2.tgz#38ecb64f01aa0d02b7c8f4222d7c38af6316fef8" - integrity sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g== - -"@types/vscode@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.47.0.tgz#4a4051c21ecaadcf383a2c4387bea282540e96de" - integrity sha512-nJA37ykkz9FYA0ZOQUSc3OZnhuzEW2vUhUEo4MiduUo82jGwwcLfyvmgd/Q7b0WrZAAceojGhZybg319L24bTA== - -"@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== - -"@types/yargs@^15.0.0": - version "15.0.15" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.15.tgz#e609a2b1ef9e05d90489c2f5f45bbfb2be092158" - integrity sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg== - dependencies: - "@types/yargs-parser" "*" - -"@types/yargs@^17.0.8": - version "17.0.24" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" - integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/eslint-plugin@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz#c24dc7c8069c7706bc40d99f6fa87edcb2005276" - integrity sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg== - dependencies: - "@typescript-eslint/experimental-utils" "4.33.0" - "@typescript-eslint/scope-manager" "4.33.0" - debug "^4.3.1" - functional-red-black-tree "^1.0.1" - ignore "^5.1.8" - regexpp "^3.1.0" - semver "^7.3.5" - tsutils "^3.21.0" - -"@typescript-eslint/experimental-utils@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz#6f2a786a4209fa2222989e9380b5331b2810f7fd" - integrity sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q== - dependencies: - "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.33.0" - "@typescript-eslint/types" "4.33.0" - "@typescript-eslint/typescript-estree" "4.33.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - -"@typescript-eslint/parser@4.14.0": - version "4.14.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.14.0.tgz#62d4cd2079d5c06683e9bfb200c758f292c4dee7" - integrity sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg== - dependencies: - "@typescript-eslint/scope-manager" "4.14.0" - "@typescript-eslint/types" "4.14.0" - "@typescript-eslint/typescript-estree" "4.14.0" - debug "^4.1.1" - -"@typescript-eslint/scope-manager@4.14.0": - version "4.14.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.14.0.tgz#55a4743095d684e1f7b7180c4bac2a0a3727f517" - integrity sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q== - dependencies: - "@typescript-eslint/types" "4.14.0" - "@typescript-eslint/visitor-keys" "4.14.0" - -"@typescript-eslint/scope-manager@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz#d38e49280d983e8772e29121cf8c6e9221f280a3" - integrity sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ== - dependencies: - "@typescript-eslint/types" "4.33.0" - "@typescript-eslint/visitor-keys" "4.33.0" - -"@typescript-eslint/types@4.14.0": - version "4.14.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.14.0.tgz#d8a8202d9b58831d6fd9cee2ba12f8a5a5dd44b6" - integrity sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A== - -"@typescript-eslint/types@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72" - integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ== - -"@typescript-eslint/typescript-estree@4.14.0": - version "4.14.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.14.0.tgz#4bcd67486e9acafc3d0c982b23a9ab8ac8911ed7" - integrity sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag== - dependencies: - "@typescript-eslint/types" "4.14.0" - "@typescript-eslint/visitor-keys" "4.14.0" - debug "^4.1.1" - globby "^11.0.1" - is-glob "^4.0.1" - lodash "^4.17.15" - semver "^7.3.2" - tsutils "^3.17.1" - -"@typescript-eslint/typescript-estree@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609" - integrity sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA== - dependencies: - "@typescript-eslint/types" "4.33.0" - "@typescript-eslint/visitor-keys" "4.33.0" - debug "^4.3.1" - globby "^11.0.3" - is-glob "^4.0.1" - semver "^7.3.5" - tsutils "^3.21.0" - -"@typescript-eslint/visitor-keys@4.14.0": - version "4.14.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.14.0.tgz#b1090d9d2955b044b2ea2904a22496849acbdf54" - integrity sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA== - dependencies: - "@typescript-eslint/types" "4.14.0" - eslint-visitor-keys "^2.0.0" - -"@typescript-eslint/visitor-keys@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd" - integrity sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg== - dependencies: - "@typescript-eslint/types" "4.33.0" - eslint-visitor-keys "^2.0.0" - -"@vscode-logging/logger@1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@vscode-logging/logger/-/logger-1.2.2.tgz#9a41b03e9a8ad8295eba43d9e72466dd73bff168" - integrity sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA== - dependencies: - "@vscode-logging/types" "^0.1.3" - fast-safe-stringify "2.0.7" - fs-extra "8.1.0" - lodash "4.17.20" - stacktrace-js "2.0.2" - streamroller "2.2.3" - triple-beam "1.3.0" - winston "3.3.3" - winston-transport "4.3.0" - -"@vscode-logging/types@0.1.4", "@vscode-logging/types@^0.1.3": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@vscode-logging/types/-/types-0.1.4.tgz#0a9b1752322da0d02e7435995557f6e0e12c4cb9" - integrity sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA== - -"@xml-tools/ast-position@2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@xml-tools/ast-position/-/ast-position-2.0.2.tgz#5d66cf8f2a8f84ca4c02cf01108ecdd0605cec78" - integrity sha512-SuZrlXPJICF/mtcjPe8Yq5gTX6XaLyWACQyeVG6X+dMuHWiZ5ckLvlMXs5SZg9Xxw21d3Q/P1MFyM33HQPzkNg== - dependencies: - "@xml-tools/ast" "^5.0.0" - -"@xml-tools/ast@5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@xml-tools/ast/-/ast-5.0.0.tgz#dd1c944d010a51cd9209bdd0843b28b64f6967a0" - integrity sha512-NLMBbvW1S6bG+pHvPfQeM3ci+le9LexuA4E+obqoRpTWqlJSQGiPKxq8p+HauQmdlF4UC9GUIGsa+9FNFefKyg== - dependencies: - "@xml-tools/common" "^0.1.2" - "@xml-tools/parser" "^1.0.7" - lodash "4.17.15" - -"@xml-tools/ast@^5.0.0": - version "5.0.5" - resolved "https://registry.yarnpkg.com/@xml-tools/ast/-/ast-5.0.5.tgz#e32336fa5e508c5e38faf2e6d58bc67e67f23565" - integrity sha512-avvzTOvGplCx9JSKdsTe3vK+ACvsHy2HxVfkcfIqPzu+kF5CT4rw5aUVzs0tJF4cnDyMRVkSyVxR07X0Px8gPA== - dependencies: - "@xml-tools/common" "^0.1.6" - "@xml-tools/parser" "^1.0.11" - lodash "4.17.21" - -"@xml-tools/common@0.1.2": - version "0.1.2" - resolved "https://registry.yarnpkg.com/@xml-tools/common/-/common-0.1.2.tgz#ed02cb9b9791a22615c5ec523650fd1336c65c3e" - integrity sha512-5U0CbB3u5WDRKX+oPjHEm6ZkJk8z5LZMpEI6uzBzcnP+3dIxahCF90lhwljQ/rPVSLMLxLfv72xru6RbePeLWA== - dependencies: - lodash "4.17.15" - -"@xml-tools/common@^0.1.2", "@xml-tools/common@^0.1.6": - version "0.1.6" - resolved "https://registry.yarnpkg.com/@xml-tools/common/-/common-0.1.6.tgz#fff36fd501c621a77441e842dde5c8dd714a52e3" - integrity sha512-7aVZeEYccs1KI/Asd6KKnrB4dTAWXTkjRMjG40ApGEUp5NpfQIvWLEBvMv85Koj2lbSpagcAERwDy9qMsfWGdA== - dependencies: - lodash "4.17.21" - -"@xml-tools/content-assist@3.1.7": - version "3.1.7" - resolved "https://registry.yarnpkg.com/@xml-tools/content-assist/-/content-assist-3.1.7.tgz#aa2e14a117d73b7cb3afefa62827efbd2498014b" - integrity sha512-qkOSsQt3arJANrJnypXmLzXaCeFX0qNCZDvrNue0LDhWP+MbGMJO50Vh5FLYCQUCzDFHIzi8T53abCkbO1e3ug== - dependencies: - "@xml-tools/common" "^0.1.2" - "@xml-tools/parser" "^1.0.7" - lodash "4.17.15" - -"@xml-tools/parser@1.0.7": - version "1.0.7" - resolved "https://registry.yarnpkg.com/@xml-tools/parser/-/parser-1.0.7.tgz#2228b77856cd552392057b8e2e507101b64261cb" - integrity sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ== - dependencies: - chevrotain "7.0.1" - -"@xml-tools/parser@^1.0.11", "@xml-tools/parser@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@xml-tools/parser/-/parser-1.0.11.tgz#a118a14099ea5c3c537e4781fad2fc195b57f8ff" - integrity sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA== - dependencies: - chevrotain "7.1.1" - -"@yarnpkg/lockfile@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" - integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== - -"@yarnpkg/parsers@3.0.0-rc.46": - version "3.0.0-rc.46" - resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz#03f8363111efc0ea670e53b0282cd3ef62de4e01" - integrity sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q== - dependencies: - js-yaml "^3.10.0" - tslib "^2.4.0" - -"@zkochan/js-yaml@0.0.6": - version "0.0.6" - resolved "https://registry.yarnpkg.com/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz#975f0b306e705e28b8068a07737fa46d3fc04826" - integrity sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg== - dependencies: - argparse "^2.0.1" - -JSONStream@^1.0.4, JSONStream@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -abab@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - -abbrev@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -acorn-globals@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3" - integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== - dependencies: - acorn "^8.1.0" - acorn-walk "^8.0.2" - -acorn-jsx@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^8.0.2, acorn-walk@^8.1.1: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^7.4.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.1.0, acorn@^8.4.1, acorn@^8.8.1: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== - -add-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" - integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== - -agent-base@6, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -agentkeepalive@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" - integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== - dependencies: - debug "^4.1.0" - depd "^2.0.0" - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv@6.12.3: - version "6.12.3" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" - integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== - 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" - -ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.0.1, ajv@^8.11.0: - version "8.12.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" - integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -ansi-colors@^4.1.1, ansi-colors@^4.1.3: - version "4.1.3" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" - integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== - -ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^5.0.0, ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -ansi-styles@^6.1.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - -any-promise@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" - integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== - -anymatch@^3.0.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -append-transform@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-2.0.0.tgz#99d9d29c7b38391e6f428d28ce136551f0b77e12" - integrity sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg== - dependencies: - default-require-extensions "^3.0.0" - -"aproba@^1.0.3 || ^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -archy@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== - -are-we-there-yet@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" - integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -array-buffer-byte-length@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" - integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== - dependencies: - call-bind "^1.0.2" - is-array-buffer "^3.0.1" - -array-differ@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" - integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== - -array-ify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" - integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array.prototype.flat@^1.2.3: - version "1.3.1" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" - integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -arrify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== - -asn1@~0.2.3: - version "0.2.6" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" - integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== - dependencies: - safer-buffer "~2.1.0" - -assert-never@1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" - integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== - -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -async@^3.1.0, async@^3.2.3: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" - integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== - -aws4@^1.8.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" - integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== - -axios@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.4.0.tgz#38a7bf1224cd308de271146038b551d725f0be1f" - integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA== - dependencies: - follow-redirects "^1.15.0" - form-data "^4.0.0" - proxy-from-env "^1.1.0" - -azure-devops-node-api@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-7.2.0.tgz#131d4e01cf12ebc6e45569b5e0c5c249e4114d6d" - integrity sha512-pMfGJ6gAQ7LRKTHgiRF+8iaUUeGAI0c8puLaqHLc7B8AR7W6GJLozK9RFeUHFjEGybC9/EB3r67WPd7e46zQ8w== - dependencies: - os "0.1.1" - tunnel "0.0.4" - typed-rest-client "1.2.0" - underscore "1.8.3" - -babel-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" - integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== - 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" - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - 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" - -babel-plugin-jest-hoist@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" - integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - 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" - -babel-preset-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" - integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== - dependencies: - babel-plugin-jest-hoist "^29.5.0" - babel-preset-current-node-syntax "^1.0.0" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== - dependencies: - tweetnacl "^0.14.3" - -before-after-hook@^2.2.0: - version "2.2.3" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" - integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== - -better-path-resolve@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" - integrity sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== - dependencies: - is-windows "^1.0.0" - -big-integer@^1.6.17: - version "1.6.51" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" - integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -binary@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79" - integrity sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg== - dependencies: - buffers "~0.1.1" - chainsaw "~0.1.0" - -binaryextensions@^4.16.0: - version "4.18.0" - resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-4.18.0.tgz#22aeada2d14de062c60e8ca59a504a5636a76ceb" - integrity sha512-PQu3Kyv9dM4FnwB7XGj1+HucW+ShvJzJqjuw1JkKVs1mWdwOKVcRjOi+pV9X52A0tNvrPCsPkbFFQb+wE1EAXw== - -bl@^4.0.3, bl@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -bluebird@~3.4.1: - version "3.4.7" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" - integrity sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA== - -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -breakword@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.5.tgz#fd420a417f55016736b5b615161cae1c8f819810" - integrity sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg== - dependencies: - wcwidth "^1.0.1" - -browser-resolve@^1.11.3: - version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== - dependencies: - resolve "1.1.7" - -browserslist@^4.21.3: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== - dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-crc32@~0.2.3: - version "0.2.13" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer-indexof-polyfill@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz#d2732135c5999c64b277fcf9b1abe3498254729c" - integrity sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A== - -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -buffers@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" - integrity sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ== - -builtins@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" - integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== - -builtins@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" - integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== - dependencies: - semver "^7.0.0" - -byte-size@8.1.1: - version "8.1.1" - resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-8.1.1.tgz#3424608c62d59de5bfda05d31e0313c6174842ae" - integrity sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg== - -cacache@^16.1.0: - version "16.1.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== - dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - chownr "^2.0.0" - fs-minipass "^2.1.0" - glob "^8.0.1" - infer-owner "^1.0.4" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^9.0.0" - tar "^6.1.11" - unique-filename "^2.0.0" - -cacache@^17.0.0: - version "17.1.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.3.tgz#c6ac23bec56516a7c0c52020fd48b4909d7c7044" - integrity sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg== - 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" - ssri "^10.0.0" - tar "^6.1.11" - unique-filename "^3.0.0" - -cachedir@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" - integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== - -caching-transform@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-4.0.0.tgz#00d297a4206d71e2163c39eaffa8157ac0651f0f" - integrity sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA== - dependencies: - hasha "^5.0.0" - make-dir "^3.0.0" - package-hash "^4.0.0" - write-file-atomic "^3.0.0" - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -call-me-maybe@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.2.tgz#03f964f19522ba643b1b0693acb9152fe2074baa" - integrity sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ== - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001449: - version "1.0.30001488" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001488.tgz#d19d7b6e913afae3e98f023db97c19e9ddc5e91f" - integrity sha512-NORIQuuL4xGpIy6iCCQGN4iFjlBXtfKWIenlUuyZJumLRIindLb7wXM+GO8erEhb7vXfcnf4BAg2PrSDN5TNLQ== - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== - -chai@4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" - integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== - dependencies: - assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^3.0.1" - get-func-name "^2.0.0" - pathval "^1.1.0" - type-detect "^4.0.5" - -chainsaw@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98" - integrity sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ== - dependencies: - traverse ">=0.3.0 <0.4" - -chalk@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" - integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== - -cheerio-select@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" - integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== - dependencies: - boolbase "^1.0.0" - css-select "^5.1.0" - css-what "^6.1.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" - -cheerio@^1.0.0-rc.1: - version "1.0.0-rc.12" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" - integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== - dependencies: - cheerio-select "^2.1.0" - dom-serializer "^2.0.0" - domhandler "^5.0.3" - domutils "^3.0.1" - htmlparser2 "^8.0.1" - parse5 "^7.0.0" - parse5-htmlparser2-tree-adapter "^7.0.0" - -chevrotain@10.4.2: - version "10.4.2" - resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-10.4.2.tgz#9abeac6a60134931c0a0788b206400e5f7a3daba" - integrity sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg== - dependencies: - "@chevrotain/cst-dts-gen" "10.4.2" - "@chevrotain/gast" "10.4.2" - "@chevrotain/types" "10.4.2" - "@chevrotain/utils" "10.4.2" - lodash "4.17.21" - regexp-to-ast "0.5.0" - -chevrotain@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-7.0.1.tgz#55d1d21a9afea0aad23b4d30e75650212eb4cc9f" - integrity sha512-B/44jrdw5GAzy483LEeVSgXSX0qOYM8lUd3l5+yf6Vl6OQjEUCm2BUiYbHRCIK6xCEvCLAFe1kj8uyV6+zdaVw== - dependencies: - regexp-to-ast "0.5.0" - -chevrotain@7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-7.1.1.tgz#5122814eafd1585a9601f9180a7be9c42d5699c6" - integrity sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw== - dependencies: - regexp-to-ast "0.5.0" - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.6.1: - version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== - -cjs-module-lexer@^1.0.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" - integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli-color@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/cli-color/-/cli-color-2.0.3.tgz#73769ba969080629670f3f2ef69a4bf4e7cc1879" - integrity sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ== - dependencies: - d "^1.0.1" - es5-ext "^0.10.61" - es6-iterator "^2.0.3" - memoizee "^0.4.15" - timers-ext "^0.1.7" - -cli-cursor@3.1.0, cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" - integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== - -cli-spinners@^2.5.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" - integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== - -cli-truncate@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - dependencies: - slice-ansi "^3.0.0" - string-width "^4.2.0" - -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - -clone-buffer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" - integrity sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g== - -clone-deep@4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== - dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" - -clone-stats@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" - integrity sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag== - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -clone@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" - integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== - -cloneable-readable@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec" - integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== - dependencies: - inherits "^2.0.1" - process-nextick-args "^2.0.0" - readable-stream "^2.3.5" - -cmd-shim@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-6.0.1.tgz#a65878080548e1dca760b3aea1e21ed05194da9d" - integrity sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q== - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -color-convert@^1.9.0, color-convert@^1.9.3: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-string@^1.6.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" - integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== - dependencies: - color-name "^1.0.0" - simple-swizzle "^0.2.2" - -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -color@^3.1.3: - version "3.2.1" - resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" - integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== - dependencies: - color-convert "^1.9.3" - color-string "^1.6.0" - -colorette@^2.0.16: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -colorspace@1.1.x: - version "1.1.4" - resolved "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.4.tgz#8d442d1186152f60453bf8070cd66eb364e59243" - integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w== - dependencies: - color "^3.1.3" - text-hex "1.0.x" - -columnify@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3" - integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== - dependencies: - strip-ansi "^6.0.1" - wcwidth "^1.0.0" - -combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^6.1.0, commander@^6.2.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" - integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== - -commitizen@^4.0.3: - version "4.3.0" - resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-4.3.0.tgz#0d056c542a2d2b1f9b9aba981aa32575b2849924" - integrity sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw== - dependencies: - cachedir "2.3.0" - cz-conventional-changelog "3.3.0" - dedent "0.7.0" - detect-indent "6.1.0" - find-node-modules "^2.1.2" - find-root "1.1.0" - fs-extra "9.1.0" - glob "7.2.3" - inquirer "8.2.5" - is-utf8 "^0.2.1" - lodash "4.17.21" - minimist "1.2.7" - strip-bom "4.0.0" - strip-json-comments "3.1.1" - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - -compare-func@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" - integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== - dependencies: - array-ify "^1.0.0" - dot-prop "^5.1.0" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -concat-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" - integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.0.2" - typedarray "^0.0.6" - -console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -conventional-changelog-angular@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz#a9a9494c28b7165889144fd5b91573c4aa9ca541" - integrity sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg== - dependencies: - compare-func "^2.0.0" - -conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.12: - version "5.0.13" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" - integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== - dependencies: - compare-func "^2.0.0" - q "^1.5.1" - -conventional-changelog-atom@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" - integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== - dependencies: - q "^1.5.1" - -conventional-changelog-cli@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-2.1.1.tgz#7a11980bc399938e0509d2adf8e7a0e213eb994e" - integrity sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng== - dependencies: - add-stream "^1.0.0" - conventional-changelog "^3.1.24" - lodash "^4.17.15" - meow "^8.0.0" - tempfile "^3.0.0" - -conventional-changelog-codemirror@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" - integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== - dependencies: - q "^1.5.1" - -conventional-changelog-conventionalcommits@^4.3.1, conventional-changelog-conventionalcommits@^4.5.0: - version "4.6.3" - resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz#0765490f56424b46f6cb4db9135902d6e5a36dc2" - integrity sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g== - dependencies: - compare-func "^2.0.0" - lodash "^4.17.15" - q "^1.5.1" - -conventional-changelog-core@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz#3c331b155d5b9850f47b4760aeddfc983a92ad49" - integrity sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A== - dependencies: - add-stream "^1.0.0" - conventional-changelog-writer "^6.0.0" - conventional-commits-parser "^4.0.0" - dateformat "^3.0.3" - get-pkg-repo "^4.2.1" - git-raw-commits "^3.0.0" - git-remote-origin-url "^2.0.0" - git-semver-tags "^5.0.0" - normalize-package-data "^3.0.3" - read-pkg "^3.0.0" - read-pkg-up "^3.0.0" - -conventional-changelog-core@^4.2.1: - version "4.2.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz#e50d047e8ebacf63fac3dc67bf918177001e1e9f" - integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg== - dependencies: - add-stream "^1.0.0" - conventional-changelog-writer "^5.0.0" - conventional-commits-parser "^3.2.0" - dateformat "^3.0.0" - get-pkg-repo "^4.0.0" - git-raw-commits "^2.0.8" - git-remote-origin-url "^2.0.0" - git-semver-tags "^4.1.1" - lodash "^4.17.15" - normalize-package-data "^3.0.0" - q "^1.5.1" - read-pkg "^3.0.0" - read-pkg-up "^3.0.0" - through2 "^4.0.0" - -conventional-changelog-ember@^2.0.9: - version "2.0.9" - resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" - integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== - dependencies: - q "^1.5.1" - -conventional-changelog-eslint@^3.0.9: - version "3.0.9" - resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" - integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== - dependencies: - q "^1.5.1" - -conventional-changelog-express@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" - integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== - dependencies: - q "^1.5.1" - -conventional-changelog-jquery@^3.0.11: - version "3.0.11" - resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" - integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== - dependencies: - q "^1.5.1" - -conventional-changelog-jshint@^2.0.9: - version "2.0.9" - resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" - integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== - dependencies: - compare-func "^2.0.0" - q "^1.5.1" - -conventional-changelog-preset-loader@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" - integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== - -conventional-changelog-preset-loader@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz#14975ef759d22515d6eabae6396c2ae721d4c105" - integrity sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA== - -conventional-changelog-writer@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" - integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== - dependencies: - conventional-commits-filter "^2.0.7" - dateformat "^3.0.0" - handlebars "^4.7.7" - json-stringify-safe "^5.0.1" - lodash "^4.17.15" - meow "^8.0.0" - semver "^6.0.0" - split "^1.0.0" - through2 "^4.0.0" - -conventional-changelog-writer@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-6.0.0.tgz#8c8dea0441c6e648c9b25bb784e750d02f8002d5" - integrity sha512-8PyWTnn7zBIt9l4hj4UusFs1TyG+9Ulu1zlOAc72L7Sdv9Hsc8E86ot7htY3HXCVhXHB/NO0pVGvZpwsyJvFfw== - dependencies: - conventional-commits-filter "^3.0.0" - dateformat "^3.0.3" - handlebars "^4.7.7" - json-stringify-safe "^5.0.1" - meow "^8.1.2" - semver "^6.3.0" - split "^1.0.1" - -conventional-changelog@^3.1.24: - version "3.1.25" - resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.25.tgz#3e227a37d15684f5aa1fb52222a6e9e2536ccaff" - integrity sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ== - dependencies: - conventional-changelog-angular "^5.0.12" - conventional-changelog-atom "^2.0.8" - conventional-changelog-codemirror "^2.0.8" - conventional-changelog-conventionalcommits "^4.5.0" - conventional-changelog-core "^4.2.1" - conventional-changelog-ember "^2.0.9" - conventional-changelog-eslint "^3.0.9" - conventional-changelog-express "^2.0.6" - conventional-changelog-jquery "^3.0.11" - conventional-changelog-jshint "^2.0.9" - conventional-changelog-preset-loader "^2.3.4" - -conventional-commit-types@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b" - integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg== - -conventional-commits-filter@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" - integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== - dependencies: - lodash.ismatch "^4.4.0" - modify-values "^1.0.0" - -conventional-commits-filter@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz#bf1113266151dd64c49cd269e3eb7d71d7015ee2" - integrity sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q== - dependencies: - lodash.ismatch "^4.4.0" - modify-values "^1.0.1" - -conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.2.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" - integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== - dependencies: - JSONStream "^1.0.4" - is-text-path "^1.0.1" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -conventional-commits-parser@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz#02ae1178a381304839bce7cea9da5f1b549ae505" - integrity sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== - dependencies: - JSONStream "^1.3.5" - is-text-path "^1.0.1" - meow "^8.1.2" - split2 "^3.2.2" - -conventional-recommended-bump@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz#ec01f6c7f5d0e2491c2d89488b0d757393392424" - integrity sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA== - dependencies: - concat-stream "^2.0.0" - conventional-changelog-preset-loader "^3.0.0" - conventional-commits-filter "^3.0.0" - conventional-commits-parser "^4.0.0" - git-raw-commits "^3.0.0" - git-semver-tags "^5.0.0" - meow "^8.1.2" - -convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -convert-source-map@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" - integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== - -core-js@^3.6.1: - version "3.30.2" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.30.2.tgz#6528abfda65e5ad728143ea23f7a14f0dcf503fc" - integrity sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg== - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig-typescript-loader@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz#c4259ce474c9df0f32274ed162c0447c951ef073" - integrity sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q== - -cosmiconfig@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" - integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== - 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" - -cosmiconfig@^8.0.0: - version "8.1.3" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" - integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== - dependencies: - import-fresh "^3.2.1" - js-yaml "^4.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - -cosmiconfig@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz#f7d17c56a590856cd1e7cee98734dca272b0d8fd" - integrity sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ== - dependencies: - import-fresh "^3.2.1" - js-yaml "^4.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - -coveralls@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.1.0.tgz#13c754d5e7a2dd8b44fe5269e21ca394fb4d615b" - integrity sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ== - dependencies: - js-yaml "^3.13.1" - lcov-parse "^1.0.0" - log-driver "^1.2.7" - minimist "^1.2.5" - request "^2.88.2" - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-env@7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" - integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== - dependencies: - cross-spawn "^7.0.1" - -cross-spawn@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A== - dependencies: - lru-cache "^4.0.1" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -css-select@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" - integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== - dependencies: - boolbase "^1.0.0" - css-what "^6.1.0" - domhandler "^5.0.2" - domutils "^3.0.1" - nth-check "^2.0.1" - -css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -cssom@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36" - integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -csv-generate@^3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.4.3.tgz#bc42d943b45aea52afa896874291da4b9108ffff" - integrity sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw== - -csv-parse@^4.16.3: - version "4.16.3" - resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7" - integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg== - -csv-stringify@^5.6.5: - version "5.6.5" - resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.6.5.tgz#c6d74badda4b49a79bf4e72f91cce1e33b94de00" - integrity sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A== - -csv@^5.5.3: - version "5.5.3" - resolved "https://registry.yarnpkg.com/csv/-/csv-5.5.3.tgz#cd26c1e45eae00ce6a9b7b27dcb94955ec95207d" - integrity sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g== - dependencies: - csv-generate "^3.4.3" - csv-parse "^4.16.3" - csv-stringify "^5.6.5" - stream-transform "^2.1.3" - -cz-conventional-changelog@3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-3.3.0.tgz#9246947c90404149b3fe2cf7ee91acad3b7d22d2" - integrity sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw== - dependencies: - chalk "^2.4.1" - commitizen "^4.0.3" - conventional-commit-types "^3.0.0" - lodash.map "^4.5.1" - longest "^2.0.1" - word-wrap "^1.0.3" - optionalDependencies: - "@commitlint/load" ">6.1.1" - -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - -dargs@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" - integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== - dependencies: - assert-plus "^1.0.0" - -data-urls@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143" - integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== - dependencies: - abab "^2.0.6" - whatwg-mimetype "^3.0.0" - whatwg-url "^11.0.0" - -date-format@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/date-format/-/date-format-2.1.0.tgz#31d5b5ea211cf5fd764cd38baf9d033df7e125cf" - integrity sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA== - -dateformat@^3.0.0, dateformat@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" - integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== - -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1, debug@^4.3.3, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -decamelize-keys@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" - integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decimal.js@^10.4.2: - version "10.4.3" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" - integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== - -dedent@0.7.0, dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-eql@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" - integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== - dependencies: - type-detect "^4.0.0" - -deep-equal-in-any-order@1.0.28: - version "1.0.28" - resolved "https://registry.yarnpkg.com/deep-equal-in-any-order/-/deep-equal-in-any-order-1.0.28.tgz#2b002827e03b9e6b048692baf7faa0a07d3dd1d8" - integrity sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ== - dependencies: - lodash.mapvalues "^4.6.0" - sort-any "^1.1.21" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-freeze-strict@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/deep-freeze-strict/-/deep-freeze-strict-1.1.1.tgz#77d0583ca24a69be4bbd9ac2fae415d55523e5b0" - integrity sha512-QemROZMM2IvhAcCFvahdX2Vbm4S/txeq5rFYU9fh4mQP79WTMW5c/HkQ2ICl1zuzcDZdPZ6zarDxQeQMsVYoNA== - -deep-is@^0.1.3, deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -default-require-extensions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-3.0.1.tgz#bfae00feeaeada68c2ae256c62540f60b80625bd" - integrity sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw== - dependencies: - strip-bom "^4.0.0" - -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" - integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -denodeify@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" - integrity sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg== - -depd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -deprecation@^2.0.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" - integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== - -detect-file@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== - -detect-indent@6.1.0, detect-indent@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" - integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== - -detect-indent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" - integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" - integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== - -diff-sequences@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" - integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== - -diff-sequences@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" - integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-serializer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" - integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - entities "^4.2.0" - -domelementtype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domexception@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" - integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== - dependencies: - webidl-conversions "^7.0.0" - -domhandler@^5.0.2, domhandler@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" - integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== - dependencies: - domelementtype "^2.3.0" - -domutils@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" - integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== - dependencies: - dom-serializer "^2.0.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - -dot-prop@^5.1.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== - dependencies: - is-obj "^2.0.0" - -dotenv-expand@~10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" - integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A== - -dotenv@~16.3.1: - version "16.3.1" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" - integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== - -duplexer2@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== - dependencies: - readable-stream "^2.0.2" - -duplexer@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" - integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== - -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -ejs@^3.1.6, ejs@^3.1.7: - version "3.1.9" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" - integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== - dependencies: - jake "^10.8.5" - -electron-to-chromium@^1.4.284: - version "1.4.401" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.401.tgz#cbd2c332c4a833e9e8d2ec5b3a6cd85ec6920907" - integrity sha512-AswqHsYyEbfSn0x87n31Na/xttUqEAg7NUjpiyxC20MaWKLyadOYHMzyLdF78N1iw+FK8/2KHLpZxRdyRILgtA== - -emittery@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" - integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -enabled@2.0.x: - version "2.0.0" - resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" - integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== - -encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -enquirer@^2.3.0, enquirer@^2.3.5, enquirer@^2.3.6, enquirer@~2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== - dependencies: - ansi-colors "^4.1.1" - -entities@4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.3.0.tgz#62915f08d67353bb4eb67e3d62641a4059aec656" - integrity sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg== - -entities@^4.2.0, entities@^4.4.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" - integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== - -entities@~2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" - integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== - -env-paths@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" - integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== - -envinfo@7.8.1: - version "7.8.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" - integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== - -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -error-stack-parser@^2.0.6: - version "2.1.4" - resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" - integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== - dependencies: - stackframe "^1.3.4" - -es-abstract@^1.19.0, es-abstract@^1.20.4: - version "1.21.2" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" - integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== - 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" - -es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== - dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" - has-tostringtag "^1.0.0" - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@^0.10.53, es5-ext@^0.10.61, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: - version "0.10.62" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5" - integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA== - dependencies: - es6-iterator "^2.0.3" - es6-symbol "^3.1.3" - next-tick "^1.1.0" - -es6-error@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" - integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== - -es6-iterator@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-symbol@^3.1.1, es6-symbol@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -es6-weak-map@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== - dependencies: - d "1" - es5-ext "^0.10.46" - es6-iterator "^2.0.3" - es6-symbol "^3.1.1" - -esbuild@0.17.12: - version "0.17.12" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.12.tgz#2ad7523bf1bc01881e9d904bc04e693bd3bdcf2f" - integrity sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ== - optionalDependencies: - "@esbuild/android-arm" "0.17.12" - "@esbuild/android-arm64" "0.17.12" - "@esbuild/android-x64" "0.17.12" - "@esbuild/darwin-arm64" "0.17.12" - "@esbuild/darwin-x64" "0.17.12" - "@esbuild/freebsd-arm64" "0.17.12" - "@esbuild/freebsd-x64" "0.17.12" - "@esbuild/linux-arm" "0.17.12" - "@esbuild/linux-arm64" "0.17.12" - "@esbuild/linux-ia32" "0.17.12" - "@esbuild/linux-loong64" "0.17.12" - "@esbuild/linux-mips64el" "0.17.12" - "@esbuild/linux-ppc64" "0.17.12" - "@esbuild/linux-riscv64" "0.17.12" - "@esbuild/linux-s390x" "0.17.12" - "@esbuild/linux-x64" "0.17.12" - "@esbuild/netbsd-x64" "0.17.12" - "@esbuild/openbsd-x64" "0.17.12" - "@esbuild/sunos-x64" "0.17.12" - "@esbuild/win32-arm64" "0.17.12" - "@esbuild/win32-ia32" "0.17.12" - "@esbuild/win32-x64" "0.17.12" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-prettier@7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz#f4a4bd2832e810e8cc7c1411ec85b3e85c0c53f9" - integrity sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg== - -eslint-plugin-eslint-comments@3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa" - integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== - dependencies: - escape-string-regexp "^1.0.5" - ignore "^5.0.5" - -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-utils@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint@7.18.0: - version "7.18.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.18.0.tgz#7fdcd2f3715a41fe6295a16234bd69aed2c75e67" - integrity sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ== - dependencies: - "@babel/code-frame" "^7.0.0" - "@eslint/eslintrc" "^0.3.0" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.0.1" - doctrine "^3.0.0" - enquirer "^2.3.5" - eslint-scope "^5.1.1" - eslint-utils "^2.1.0" - eslint-visitor-keys "^2.0.0" - espree "^7.3.1" - esquery "^1.2.0" - esutils "^2.0.2" - file-entry-cache "^6.0.0" - functional-red-black-tree "^1.0.1" - glob-parent "^5.0.0" - globals "^12.1.0" - ignore "^4.0.6" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^3.13.1" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash "^4.17.20" - minimatch "^3.0.4" - natural-compare "^1.4.0" - optionator "^0.9.1" - progress "^2.0.0" - regexpp "^3.1.0" - semver "^7.2.1" - strip-ansi "^6.0.0" - strip-json-comments "^3.1.0" - table "^6.0.4" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -esm@3.2.25: - version "3.2.25" - resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" - integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== - -espree@^7.3.0, espree@^7.3.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" - integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== - dependencies: - acorn "^7.4.0" - acorn-jsx "^5.3.1" - eslint-visitor-keys "^1.3.0" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.2.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -event-emitter@^0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA== - dependencies: - d "1" - es5-ext "~0.10.14" - -eventemitter3@^4.0.4: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -execa@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" - integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== - 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" - -execa@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" - integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== - 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" - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - 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" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expand-tilde@^2.0.0, expand-tilde@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== - dependencies: - homedir-polyfill "^1.0.1" - -expect@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-25.5.0.tgz#f07f848712a2813bb59167da3fb828ca21f58bba" - integrity sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA== - dependencies: - "@jest/types" "^25.5.0" - ansi-styles "^4.0.0" - jest-get-type "^25.2.6" - jest-matcher-utils "^25.5.0" - jest-message-util "^25.5.0" - jest-regex-util "^25.2.6" - -expect@^29.0.0, expect@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" - integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== - 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" - -ext@^1.1.2: - version "1.7.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" - integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== - dependencies: - type "^2.7.2" - -extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -extendable-error@^0.1.5: - version "0.1.7" - resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.7.tgz#60b9adf206264ac920058a7395685ae4670c2b96" - integrity sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== - -external-editor@^3.0.3, external-editor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== - -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - -fast-deep-equal@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== - 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" - -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fast-safe-stringify@2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" - integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== - -fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== - dependencies: - reusify "^1.0.4" - -fb-watchman@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" - integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== - dependencies: - bser "2.1.1" - -fd-slicer@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== - dependencies: - pend "~1.2.0" - -fecha@^4.2.0: - version "4.2.3" - resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.3.tgz#4d9ccdbc61e8629b259fdca67e65891448d569fd" - integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== - -figures@3.2.0, figures@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - -file-entry-cache@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -filelist@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" - integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== - dependencies: - minimatch "^5.0.1" - -fill-keys@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/fill-keys/-/fill-keys-1.0.2.tgz#9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20" - integrity sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA== - dependencies: - is-object "~1.0.1" - merge-descriptors "~1.0.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-cache-dir@^3.2.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-node-modules@^2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-2.1.3.tgz#3c976cff2ca29ee94b4f9eafc613987fc4c0ee44" - integrity sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg== - dependencies: - findup-sync "^4.0.0" - merge "^2.1.1" - -find-root@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== - -find-up@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== - dependencies: - locate-path "^2.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -find-yarn-workspace-root2@1.2.16: - version "1.2.16" - resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9" - integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== - dependencies: - micromatch "^4.0.2" - pkg-dir "^4.2.0" - -findit2@2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/findit2/-/findit2-2.2.3.tgz#58a466697df8a6205cdfdbf395536b8bd777a5f6" - integrity sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog== - -findup-sync@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" - integrity sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ== - dependencies: - detect-file "^1.0.0" - is-glob "^4.0.0" - micromatch "^4.0.2" - resolve-dir "^1.0.1" - -first-chunk-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70" - integrity sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg== - dependencies: - readable-stream "^2.0.2" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flat@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" - integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== - -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== - -fn.name@1.x.x: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" - integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== - -follow-redirects@^1.15.0: - version "1.15.2" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" - integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -foreground-child@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" - integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^3.0.2" - -foreground-child@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" - integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^4.0.1" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -fromentries@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a" - integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@8.1.0, fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@9.1.0, fs-extra@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== - dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^11.1.0, fs-extra@^11.1.1: - version "11.1.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" - integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-minipass@^2.0.0, fs-minipass@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs-minipass@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.2.tgz#5b383858efa8c1eb8c33b39e994f7e8555b8b3a3" - integrity sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g== - dependencies: - minipass "^5.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -fstream@^1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" - integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== - dependencies: - graceful-fs "^4.1.2" - inherits "~2.0.0" - mkdirp ">=0.5 0" - rimraf "2" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - 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@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== - -functions-have-names@^1.2.2, functions-have-names@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -gauge@^4.0.3: - version "4.0.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" - integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== - 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" - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.1, get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" - integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -get-own-enumerable-property-symbols@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" - integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-pkg-repo@^4.0.0, get-pkg-repo@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" - integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== - dependencies: - "@hutson/parse-repository-url" "^3.0.0" - hosted-git-info "^4.0.0" - through2 "^2.0.0" - yargs "^16.2.0" - -get-port@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" - integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== - -get-stdin@8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" - integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== - -get-stream@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" - integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== - -get-stream@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== - dependencies: - assert-plus "^1.0.0" - -git-raw-commits@^2.0.0, git-raw-commits@^2.0.8: - version "2.0.11" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" - integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== - dependencies: - dargs "^7.0.0" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -git-raw-commits@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-3.0.0.tgz#5432f053a9744f67e8db03dbc48add81252cfdeb" - integrity sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw== - dependencies: - dargs "^7.0.0" - meow "^8.1.2" - split2 "^3.2.2" - -git-remote-origin-url@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" - integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== - dependencies: - gitconfiglocal "^1.0.0" - pify "^2.3.0" - -git-semver-tags@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" - integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== - dependencies: - meow "^8.0.0" - semver "^6.0.0" - -git-semver-tags@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-5.0.0.tgz#775ff55effae0b50b755448408de6cd56ce293e2" - integrity sha512-fZ+tmZ1O5aXW/T5nLzZLbxWAHdQTLLXalOECMNAmhoEQSfqZjtaeMjpsXH4C5qVhrICTkVQeQFujB1lKzIHljA== - dependencies: - meow "^8.1.2" - semver "^6.3.0" - -git-up@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467" - integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ== - dependencies: - is-ssh "^1.4.0" - parse-url "^8.1.0" - -git-url-parse@13.1.0: - version "13.1.0" - resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.0.tgz#07e136b5baa08d59fabdf0e33170de425adf07b4" - integrity sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA== - dependencies: - git-up "^7.0.0" - -gitconfiglocal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" - integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== - dependencies: - ini "^1.3.2" - -glob-parent@5.1.2, glob-parent@^5.0.0, glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-promise@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20" - integrity sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw== - dependencies: - "@types/glob" "*" - -glob@7.1.4: - version "7.1.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== - 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" - -glob@7.1.6: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - 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" - -glob@7.2.3, glob@^7.0.0, glob@^7.0.6, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - 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" - -glob@^10.2.2: - version "10.3.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.0.tgz#763d02a894f3cdfc521b10bbbbc8e0309e750cce" - integrity sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg== - dependencies: - foreground-child "^3.1.0" - jackspeak "^2.0.3" - minimatch "^9.0.1" - minipass "^5.0.0 || ^6.0.2" - path-scurry "^1.7.0" - -glob@^8.0.1: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - -glob@^9.2.0: - version "9.3.5" - resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.5.tgz#ca2ed8ca452781a3009685607fdf025a899dfe21" - integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q== - dependencies: - fs.realpath "^1.0.0" - minimatch "^8.0.2" - minipass "^4.2.4" - path-scurry "^1.6.1" - -global-dirs@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg== - dependencies: - ini "^1.3.4" - -global-modules@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== - dependencies: - global-prefix "^1.0.1" - is-windows "^1.0.1" - resolve-dir "^1.0.0" - -global-prefix@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg== - dependencies: - expand-tilde "^2.0.2" - homedir-polyfill "^1.0.1" - ini "^1.3.4" - is-windows "^1.0.1" - which "^1.2.14" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^12.1.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== - dependencies: - type-fest "^0.8.1" - -globalthis@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" - integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== - dependencies: - define-properties "^1.1.3" - -globby@11.1.0, globby@^11.0.0, globby@^11.0.1, globby@^11.0.3: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - 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" - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -graceful-fs@4.2.11, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== - -handlebars@^4.7.7: - version "4.7.7" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== - -har-validator@~5.1.3: - version "5.1.5" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" - integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - dependencies: - ajv "^6.12.3" - har-schema "^2.0.0" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has-unicode@2.0.1, has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hasha@^5.0.0: - version "5.2.2" - resolved "https://registry.yarnpkg.com/hasha/-/hasha-5.2.2.tgz#a48477989b3b327aea3c04f53096d816d97522a1" - integrity sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ== - dependencies: - is-stream "^2.0.0" - type-fest "^0.8.0" - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^3.0.6: - version "3.0.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" - integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== - dependencies: - lru-cache "^6.0.0" - -hosted-git-info@^4.0.0, hosted-git-info@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -hosted-git-info@^6.0.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-6.1.1.tgz#629442c7889a69c05de604d52996b74fe6f26d58" - integrity sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w== - dependencies: - lru-cache "^7.5.1" - -html-encoding-sniffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" - integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== - dependencies: - whatwg-encoding "^2.0.0" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -htmlparser2@^8.0.1: - version "8.0.2" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" - integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" - entities "^4.4.0" - -http-cache-semantics@^4.1.0, http-cache-semantics@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -https-proxy-agent@5.0.1, https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -human-id@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" - integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== - -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -husky@8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.1.tgz#511cb3e57de3e3190514ae49ed50f6bc3f50b3e9" - integrity sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw== - -i18next@19.0.2: - version "19.0.2" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-19.0.2.tgz#d72502ef031403572703f2e9f013cae005265444" - integrity sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g== - dependencies: - "@babel/runtime" "^7.3.1" - -iconv-lite@0.6.3, iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -iconv-lite@^0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore-walk@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-5.0.1.tgz#5f199e23e1288f518d90358d461387788a154776" - integrity sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw== - dependencies: - minimatch "^5.0.1" - -ignore-walk@^6.0.0: - version "6.0.3" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.3.tgz#0fcdb6decaccda35e308a7b0948645dd9523b7bb" - integrity sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA== - dependencies: - minimatch "^9.0.0" - -ignore@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" - integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== - -ignore@^5.0.4, ignore@^5.0.5, ignore@^5.1.8, ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@3.1.0, import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@^1.3.2, ini@^1.3.4, ini@^1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -init-package-json@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-5.0.0.tgz#030cf0ea9c84cfc1b0dc2e898b45d171393e4b40" - integrity sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw== - dependencies: - npm-package-arg "^10.0.0" - promzard "^1.0.0" - read "^2.0.0" - read-package-json "^6.0.0" - semver "^7.3.5" - validate-npm-package-license "^3.0.4" - validate-npm-package-name "^5.0.0" - -inquirer@8.2.5, inquirer@^8.2.4: - version "8.2.5" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" - integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== - 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" - -internal-slot@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== - dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" - side-channel "^1.0.4" - -interpret@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" - integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.0" - is-typed-array "^1.1.10" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-arrayish@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-ci@3.0.1, is-ci@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" - integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== - dependencies: - ci-info "^3.2.0" - -is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.8.1: - version "2.12.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^4.0.0, is-glob@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== - -is-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - -is-object@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf" - integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== - -is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-plain-object@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-potential-custom-element-name@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" - integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== - -is-promise@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" - integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-ssh@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2" - integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ== - dependencies: - protocols "^2.0.1" - -is-stream@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-subdir@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/is-subdir/-/is-subdir-1.2.0.tgz#b791cd28fab5202e91a08280d51d9d7254fd20d4" - integrity sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== - dependencies: - better-path-resolve "1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-text-path@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" - integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== - dependencies: - text-extensions "^1.0.0" - -is-typed-array@^1.1.10, is-typed-array@^1.1.9: - version "1.1.10" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== - 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-typedarray@^1.0.0, is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== - -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - -is-utf8@^0.2.0, is-utf8@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -is-windows@^1.0.0, is-windows@^1.0.1, is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isbinaryfile@^4.0.8: - version "4.0.10" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" - integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-hook@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz#8f84c9434888cc6b1d0a9d7092a76d239ebf0cc6" - integrity sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== - dependencies: - append-transform "^2.0.0" - -istanbul-lib-instrument@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" - integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== - dependencies: - "@babel/core" "^7.7.5" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" - semver "^6.3.0" - -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" - integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== - 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" - -istanbul-lib-processinfo@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz#366d454cd0dcb7eb6e0e419378e60072c8626169" - integrity sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg== - dependencies: - archy "^1.0.0" - cross-spawn "^7.0.3" - istanbul-lib-coverage "^3.2.0" - p-map "^3.0.0" - rimraf "^3.0.0" - uuid "^8.3.2" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.0.2, istanbul-reports@^3.1.3: - version "3.1.5" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jackspeak@^2.0.3: - version "2.2.1" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6" - integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw== - dependencies: - "@isaacs/cliui" "^8.0.2" - optionalDependencies: - "@pkgjs/parseargs" "^0.11.0" - -jake@^10.8.5: - version "10.8.6" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.6.tgz#227a96786a1e035214e0ba84b482d6223d41ef04" - integrity sha512-G43Ub9IYEFfu72sua6rzooi8V8Gz2lkfk48rW20vEWCGizeaEPlKB1Kh8JIA84yQbiAEfqlPmSpGgCKKxH3rDA== - dependencies: - async "^3.2.3" - chalk "^4.0.2" - filelist "^1.0.4" - minimatch "^3.1.2" - -jest-changed-files@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" - integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== - dependencies: - execa "^5.0.0" - p-limit "^3.1.0" - -jest-circus@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" - integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== - 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" - -jest-cli@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" - integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== - 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" - -jest-config@29.5.0, jest-config@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" - integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== - 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" - -"jest-diff@>=29.4.3 < 30", jest-diff@^29.0.0, jest-diff@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" - integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== - dependencies: - chalk "^4.0.0" - diff-sequences "^29.4.3" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-diff@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" - integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A== - dependencies: - chalk "^3.0.0" - diff-sequences "^25.2.6" - jest-get-type "^25.2.6" - pretty-format "^25.5.0" - -jest-diff@^29.4.1: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" - integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== - dependencies: - chalk "^4.0.0" - diff-sequences "^29.6.3" - jest-get-type "^29.6.3" - pretty-format "^29.7.0" - -jest-docblock@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" - integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== - dependencies: - detect-newline "^3.0.0" - -jest-each@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" - integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== - 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" - -jest-environment-jsdom@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz#cfe86ebaf1453f3297b5ff3470fbe94739c960cb" - integrity sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw== - 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" - -jest-environment-node@29.5.0, jest-environment-node@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" - integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== - 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" - -jest-esm-transformer@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/jest-esm-transformer/-/jest-esm-transformer-1.0.0.tgz#b6c58f496aa48194f96361a52f5c578fd2209726" - integrity sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw== - dependencies: - "@babel/core" "^7.4.4" - "@babel/plugin-transform-modules-commonjs" "^7.4.4" - -jest-extended@3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/jest-extended/-/jest-extended-3.2.3.tgz#286c19b4622e2ab828e1bb28d3b2d4a1ed64f8b9" - integrity sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA== - dependencies: - jest-diff "^29.0.0" - jest-get-type "^29.0.0" - -jest-get-type@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" - integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== - -jest-get-type@^29.0.0, jest-get-type@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" - integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== - -jest-get-type@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" - integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== - -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== - 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" - optionalDependencies: - fsevents "^2.3.2" - -jest-junit@15.0.0: - version "15.0.0" - resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-15.0.0.tgz#a47544ab42e9f8fe7ada56306c218e09e52bd690" - integrity sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg== - dependencies: - mkdirp "^1.0.4" - strip-ansi "^6.0.1" - uuid "^8.3.2" - xml "^1.0.1" - -jest-leak-detector@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" - integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== - dependencies: - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-matcher-utils@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867" - integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw== - dependencies: - chalk "^3.0.0" - jest-diff "^25.5.0" - jest-get-type "^25.2.6" - pretty-format "^25.5.0" - -jest-matcher-utils@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" - integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== - dependencies: - chalk "^4.0.0" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-message-util@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.5.0.tgz#ea11d93204cc7ae97456e1d8716251185b8880ea" - integrity sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/types" "^25.5.0" - "@types/stack-utils" "^1.0.1" - chalk "^3.0.0" - graceful-fs "^4.2.4" - micromatch "^4.0.2" - slash "^3.0.0" - stack-utils "^1.0.1" - -jest-message-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" - integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== - 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" - -jest-mock@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" - integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== - dependencies: - "@jest/types" "^29.5.0" - "@types/node" "*" - jest-util "^29.5.0" - -jest-pnp-resolver@^1.2.1, jest-pnp-resolver@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" - integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== - -jest-regex-util@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964" - integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw== - -jest-regex-util@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" - integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== - -jest-resolve-dependencies@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" - integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== - dependencies: - jest-regex-util "^29.4.3" - jest-snapshot "^29.5.0" - -jest-resolve@^25.5.1: - version "25.5.1" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.5.1.tgz#0e6fbcfa7c26d2a5fe8f456088dc332a79266829" - integrity sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ== - dependencies: - "@jest/types" "^25.5.0" - browser-resolve "^1.11.3" - chalk "^3.0.0" - graceful-fs "^4.2.4" - jest-pnp-resolver "^1.2.1" - read-pkg-up "^7.0.1" - realpath-native "^2.0.0" - resolve "^1.17.0" - slash "^3.0.0" - -jest-resolve@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" - integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== - 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" - -jest-runner@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" - integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== - 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" - -jest-runtime@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" - integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== - 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" - -jest-snapshot@^25.1.0: - version "25.5.1" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.5.1.tgz#1a2a576491f9961eb8d00c2e5fd479bc28e5ff7f" - integrity sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^25.5.0" - "@types/prettier" "^1.19.0" - chalk "^3.0.0" - expect "^25.5.0" - graceful-fs "^4.2.4" - jest-diff "^25.5.0" - jest-get-type "^25.2.6" - jest-matcher-utils "^25.5.0" - jest-message-util "^25.5.0" - jest-resolve "^25.5.1" - make-dir "^3.0.0" - natural-compare "^1.4.0" - pretty-format "^25.5.0" - semver "^6.3.0" - -jest-snapshot@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" - integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== - 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" - -jest-sonar@0.2.16: - version "0.2.16" - resolved "https://registry.yarnpkg.com/jest-sonar/-/jest-sonar-0.2.16.tgz#58d2e150dbcb9a3c781c78ae8fda327ea2439b4c" - integrity sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA== - dependencies: - entities "4.3.0" - strip-ansi "6.0.1" - -jest-specific-snapshot@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/jest-specific-snapshot/-/jest-specific-snapshot-3.0.0.tgz#c203a6bccc572832aea0278feeaa3350567a306f" - integrity sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg== - dependencies: - jest-snapshot "^25.1.0" - -jest-util@^29.0.0, jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== - 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" - -jest-validate@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" - integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== - 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" - -jest-watcher@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" - integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== - 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" - -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== - dependencies: - "@types/node" "*" - jest-util "^29.5.0" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" - integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== - dependencies: - "@jest/core" "^29.5.0" - "@jest/types" "^29.5.0" - import-local "^3.0.2" - jest-cli "^29.5.0" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@4.1.0, js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== - -jsdom@^20.0.0: - version "20.0.3" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db" - integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ== - 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" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-parse-better-errors@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-parse-even-better-errors@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz#2cb2ee33069a78870a0c7e3da560026b89669cf7" - integrity sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA== - -json-schema-ref-parser@^9.0.6: - version "9.0.9" - resolved "https://registry.yarnpkg.com/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz#66ea538e7450b12af342fa3d5b8458bc1e1e013f" - integrity sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q== - dependencies: - "@apidevtools/json-schema-ref-parser" "9.0.9" - -json-schema-to-typescript@10.0.3: - version "10.0.3" - resolved "https://registry.yarnpkg.com/json-schema-to-typescript/-/json-schema-to-typescript-10.0.3.tgz#e54e257f8ae37329005c3901138db21e40a0eff2" - integrity sha512-CKM7XZqjKhsC96RWTdczTZc5KSv1PfgwGjprf7poO0osmgKmFp2Sj10jCi96gu73naVLJtrX8x7nAf9Vq2fl2Q== - dependencies: - "@types/json-schema" "^7.0.6" - "@types/prettier" "^2.1.5" - cli-color "^2.0.0" - glob "^7.1.6" - glob-promise "^3.4.0" - is-glob "^4.0.1" - json-schema-ref-parser "^9.0.6" - json-stringify-safe "^5.0.1" - lodash "^4.17.20" - minimist "^1.2.5" - mkdirp "^1.0.4" - mz "^2.7.0" - prettier "^2.2.0" - stdin "0.0.1" - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-schema@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" - integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== - -json5@^2.1.2, json5@^2.2.2, json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -jsonc-parser@3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" - integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -jsonparse@^1.2.0, jsonparse@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - -jsprim@^1.2.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" - integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.4.0" - verror "1.10.0" - -kind-of@^6.0.2, kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -klaw-sync@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" - integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== - dependencies: - graceful-fs "^4.1.11" - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -kleur@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" - integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== - -kuler@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" - integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== - -lcov-parse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-1.0.0.tgz#eb0d46b54111ebc561acb4c408ef9363bdc8f7e0" - integrity sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ== - -lerna@^7.0.2: - version "7.3.0" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-7.3.0.tgz#efecafbdce15694e2f6841256e073a3a2061053e" - integrity sha512-Dt8TH+J+c9+3MhTYcm5OxnNzXb87WG7GPNj3kidjYJjJY7KxIMDNU37qBTYRWA1h3wAeNKBplXVQYUPkGcYgkQ== - dependencies: - "@lerna/child-process" "7.3.0" - "@lerna/create" "7.3.0" - "@npmcli/run-script" "6.0.2" - "@nx/devkit" ">=16.5.1 < 17" - "@octokit/plugin-enterprise-rest" "6.0.1" - "@octokit/rest" "19.0.11" - byte-size "8.1.1" - chalk "4.1.0" - clone-deep "4.0.1" - cmd-shim "6.0.1" - columnify "1.6.0" - conventional-changelog-angular "6.0.0" - conventional-changelog-core "5.0.1" - conventional-recommended-bump "7.0.1" - cosmiconfig "^8.2.0" - dedent "0.7.0" - envinfo "7.8.1" - execa "5.0.0" - fs-extra "^11.1.1" - get-port "5.1.1" - get-stream "6.0.0" - git-url-parse "13.1.0" - glob-parent "5.1.2" - globby "11.1.0" - graceful-fs "4.2.11" - has-unicode "2.0.1" - import-local "3.1.0" - ini "^1.3.8" - init-package-json "5.0.0" - inquirer "^8.2.4" - is-ci "3.0.1" - is-stream "2.0.0" - jest-diff ">=29.4.3 < 30" - js-yaml "4.1.0" - libnpmaccess "7.0.2" - libnpmpublish "7.3.0" - load-json-file "6.2.0" - lodash "^4.17.21" - make-dir "4.0.0" - minimatch "3.0.5" - multimatch "5.0.0" - node-fetch "2.6.7" - npm-package-arg "8.1.1" - npm-packlist "5.1.1" - npm-registry-fetch "^14.0.5" - npmlog "^6.0.2" - nx ">=16.5.1 < 17" - p-map "4.0.0" - p-map-series "2.1.0" - p-pipe "3.1.0" - p-queue "6.6.2" - p-reduce "2.1.0" - p-waterfall "2.1.1" - pacote "^15.2.0" - pify "5.0.0" - read-cmd-shim "4.0.0" - read-package-json "6.0.4" - resolve-from "5.0.0" - rimraf "^4.4.1" - semver "^7.3.8" - signal-exit "3.0.7" - slash "3.0.0" - ssri "^9.0.1" - strong-log-transformer "2.1.0" - tar "6.1.11" - temp-dir "1.0.0" - typescript ">=3 < 6" - upath "2.0.1" - uuid "^9.0.0" - validate-npm-package-license "3.0.4" - validate-npm-package-name "5.0.0" - write-file-atomic "5.0.1" - write-pkg "4.0.0" - yargs "16.2.0" - yargs-parser "20.2.4" - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -libnpmaccess@7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-7.0.2.tgz#7f056c8c933dd9c8ba771fa6493556b53c5aac52" - integrity sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw== - dependencies: - npm-package-arg "^10.1.0" - npm-registry-fetch "^14.0.3" - -libnpmpublish@7.3.0: - version "7.3.0" - resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-7.3.0.tgz#2ceb2b36866d75a6cd7b4aa748808169f4d17e37" - integrity sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg== - dependencies: - ci-info "^3.6.1" - normalize-package-data "^5.0.0" - npm-package-arg "^10.1.0" - npm-registry-fetch "^14.0.3" - proc-log "^3.0.0" - semver "^7.3.7" - sigstore "^1.4.0" - ssri "^10.0.1" - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -lines-and-columns@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" - integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== - -linkify-it@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf" - integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw== - dependencies: - uc.micro "^1.0.1" - -lint-staged@10.5.3: - version "10.5.3" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.5.3.tgz#c682838b3eadd4c864d1022da05daa0912fb1da5" - integrity sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg== - dependencies: - chalk "^4.1.0" - cli-truncate "^2.1.0" - commander "^6.2.0" - cosmiconfig "^7.0.0" - debug "^4.2.0" - dedent "^0.7.0" - enquirer "^2.3.6" - execa "^4.1.0" - listr2 "^3.2.2" - log-symbols "^4.0.0" - micromatch "^4.0.2" - normalize-path "^3.0.0" - please-upgrade-node "^3.2.0" - string-argv "0.3.1" - stringify-object "^3.3.0" - -listenercount@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/listenercount/-/listenercount-1.0.1.tgz#84c8a72ab59c4725321480c975e6508342e70937" - integrity sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ== - -listr2@^3.2.2: - version "3.14.0" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e" - integrity sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g== - 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" - -load-json-file@6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" - integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== - dependencies: - graceful-fs "^4.1.15" - parse-json "^5.0.0" - strip-bom "^4.0.0" - type-fest "^0.6.0" - -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - -load-yaml-file@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d" - integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== - dependencies: - graceful-fs "^4.1.5" - js-yaml "^3.13.0" - pify "^4.0.1" - strip-bom "^3.0.0" - -loader-utils@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" - integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash.flattendeep@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" - integrity sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ== - -lodash.ismatch@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" - integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== - -lodash.isplainobject@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" - integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== - -lodash.map@^4.5.1: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== - -lodash.mapvalues@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" - integrity sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ== - -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.mergewith@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" - integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== - -lodash.startcase@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" - integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== - -lodash.truncate@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" - integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== - -lodash@4.17.15: - version "4.17.15" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" - integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== - -lodash@4.17.20: - version "4.17.20" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== - -lodash@4.17.21, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-driver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" - integrity sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg== - -log-symbols@^4.0.0, log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - -log-update@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" - integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== - dependencies: - ansi-escapes "^4.3.0" - cli-cursor "^3.1.0" - slice-ansi "^4.0.0" - wrap-ansi "^6.2.0" - -logform@^2.2.0, logform@^2.3.2: - version "2.5.1" - resolved "https://registry.yarnpkg.com/logform/-/logform-2.5.1.tgz#44c77c34becd71b3a42a3970c77929e52c6ed48b" - integrity sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg== - dependencies: - "@colors/colors" "1.5.0" - "@types/triple-beam" "^1.3.2" - fecha "^4.2.0" - ms "^2.1.1" - safe-stable-stringify "^2.3.1" - triple-beam "^1.3.0" - -longest@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/longest/-/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" - integrity sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q== - -lru-cache@^4.0.1: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: - version "7.18.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" - integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== - -lru-cache@^9.1.1: - version "9.1.2" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-9.1.2.tgz#255fdbc14b75589d6d0e73644ca167a8db506835" - integrity sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ== - -lru-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" - integrity sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ== - dependencies: - es5-ext "~0.10.2" - -make-dir@3.1.0, make-dir@^3.0.0, make-dir@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-dir@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" - integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== - dependencies: - semver "^7.5.3" - -make-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -make-error@1.x, make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -make-fetch-happen@^10.0.3: - version "10.2.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^16.1.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-fetch "^2.0.3" - 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 "^9.0.0" - -make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.1: - version "11.1.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" - integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== - 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" - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -markdown-it@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc" - integrity sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg== - dependencies: - argparse "^1.0.7" - entities "~2.0.0" - linkify-it "^2.0.0" - mdurl "^1.0.1" - uc.micro "^1.0.5" - -matomo-tracker@2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/matomo-tracker/-/matomo-tracker-2.2.2.tgz#685937f90b318fbda6768260f11cacab471d9bcd" - integrity sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ== - -mdurl@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== - -mem-fs-editor@9.4.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/mem-fs-editor/-/mem-fs-editor-9.4.0.tgz#0cc1cf61350e33c25fc364c97fb0551eb32b8c9b" - integrity sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g== - dependencies: - binaryextensions "^4.16.0" - commondir "^1.0.1" - deep-extend "^0.6.0" - ejs "^3.1.6" - globby "^11.0.3" - isbinaryfile "^4.0.8" - minimatch "^3.0.4" - multimatch "^5.0.0" - normalize-path "^3.0.0" - textextensions "^5.13.0" - -mem-fs@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mem-fs/-/mem-fs-2.1.0.tgz#d911391204898b4cb029521641782587e6f01909" - integrity sha512-55vFOT4rfJx/9uoWntNrfzEj9209rd26spsSvKsCVBfOPH001YS5IakfElhcyagieC4uL++Ry/XDcwvgxF4/zQ== - dependencies: - vinyl "^2.0.1" - vinyl-file "^3.0.0" - -memoizee@^0.4.15: - version "0.4.15" - resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz#e6f3d2da863f318d02225391829a6c5956555b72" - integrity sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ== - dependencies: - d "^1.0.1" - es5-ext "^0.10.53" - es6-weak-map "^2.0.3" - event-emitter "^0.3.5" - is-promise "^2.2.2" - lru-queue "^0.1.0" - next-tick "^1.1.0" - timers-ext "^0.1.7" - -memorystream@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" - integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== - -meow@^6.0.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" - integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "^4.0.2" - normalize-package-data "^2.5.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.13.1" - yargs-parser "^18.1.3" - -meow@^8.0.0, meow@^8.1.2: - version "8.1.2" - resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" - integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-descriptors@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -merge@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/merge/-/merge-2.1.1.tgz#59ef4bf7e0b3e879186436e8481c06a6c162ca98" - integrity sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w== - -micromatch@^4.0.2, micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@^1.3.4: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@3.0.5: - version "3.0.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.5.tgz#4da8f1290ee0f0f8e83d60ca69f8f134068604a3" - integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^8.0.2: - version "8.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-8.0.4.tgz#847c1b25c014d4e9a7f68aaf63dedd668a626229" - integrity sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^9.0.0, minimatch@^9.0.1: - version "9.0.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.2.tgz#397e387fff22f6795844d00badc903a3d5de7057" - integrity sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg== - dependencies: - brace-expansion "^2.0.1" - -minimist-options@4.1.0, minimist-options@^4.0.2: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" - integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== - -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-fetch@^2.0.3: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== - dependencies: - minipass "^3.1.6" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - -minipass-fetch@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.3.tgz#d9df70085609864331b533c960fd4ffaa78d15ce" - integrity sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ== - dependencies: - minipass "^5.0.0" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-json-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" - integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== - dependencies: - jsonparse "^1.3.1" - minipass "^3.0.0" - -minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -minipass@^4.2.4: - version "4.2.8" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a" - integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ== - -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -"minipass@^5.0.0 || ^6.0.2": - version "6.0.2" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81" - integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w== - -minizlib@^2.1.1, minizlib@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mixme@^0.5.1: - version "0.5.9" - resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.9.tgz#a5a58e17354632179ff3ce5b0fc130899c8ba81c" - integrity sha512-VC5fg6ySUscaWUpI4gxCBTQMH2RdUpNrk+MsbpCYtIvf9SBJdiUey4qE7BXviJsJR4nDQxCZ+3yaYNW3guz/Pw== - -"mkdirp@>=0.5 0": - version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mock-fs@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-5.2.0.tgz#3502a9499c84c0a1218ee4bf92ae5bf2ea9b2b5e" - integrity sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw== - -modify-values@^1.0.0, modify-values@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" - integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== - -module-not-found-error@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/module-not-found-error/-/module-not-found-error-1.0.1.tgz#cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0" - integrity sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.0.0, ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -multimatch@5.0.0, multimatch@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-5.0.0.tgz#932b800963cea7a31a033328fa1e0c3a1874dbe6" - integrity sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA== - dependencies: - "@types/minimatch" "^3.0.3" - array-differ "^3.0.0" - array-union "^2.1.0" - arrify "^2.0.1" - minimatch "^3.0.4" - -mute-stream@0.0.8, mute-stream@~0.0.4: - version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -mute-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e" - integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA== - -mz@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" - integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== - dependencies: - any-promise "^1.0.0" - object-assign "^4.0.1" - thenify-all "^1.0.0" - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -negotiator@^0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -neo-async@^2.6.0: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -next-tick@1, next-tick@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" - integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -node-addon-api@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" - integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== - -node-fetch@2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" - integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -node-gyp-build@^4.3.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" - integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== - -node-gyp@^9.0.0: - version "9.3.1" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.3.1.tgz#1e19f5f290afcc9c46973d68700cbd21a96192e4" - integrity sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg== - dependencies: - env-paths "^2.2.0" - glob "^7.1.4" - graceful-fs "^4.2.6" - make-fetch-happen "^10.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" - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-machine-id@1.1.12: - version "1.1.12" - resolved "https://registry.yarnpkg.com/node-machine-id/-/node-machine-id-1.1.12.tgz#37904eee1e59b320bb9c5d6c0a59f3b469cb6267" - integrity sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ== - -node-preload@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/node-preload/-/node-preload-0.2.1.tgz#c03043bb327f417a18fee7ab7ee57b408a144301" - integrity sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ== - dependencies: - process-on-spawn "^1.0.0" - -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== - -nopt@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" - integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== - dependencies: - abbrev "^1.0.0" - -normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0, normalize-package-data@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-5.0.0.tgz#abcb8d7e724c40d88462b84982f7cbf6859b4588" - integrity sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q== - dependencies: - 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@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-bundled@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" - integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== - dependencies: - npm-normalize-package-bin "^1.0.1" - -npm-bundled@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.0.tgz#7e8e2f8bb26b794265028491be60321a25a39db7" - integrity sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ== - dependencies: - npm-normalize-package-bin "^3.0.0" - -npm-install-checks@^6.0.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.1.1.tgz#b459b621634d06546664207fde16810815808db1" - integrity sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw== - dependencies: - semver "^7.1.1" - -npm-normalize-package-bin@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" - integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== - -npm-normalize-package-bin@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" - integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== - -npm-package-arg@8.1.1: - version "8.1.1" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.1.tgz#00ebf16ac395c63318e67ce66780a06db6df1b04" - integrity sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg== - dependencies: - hosted-git-info "^3.0.6" - semver "^7.0.0" - validate-npm-package-name "^3.0.0" - -npm-package-arg@^10.0.0, npm-package-arg@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-10.1.0.tgz#827d1260a683806685d17193073cc152d3c7e9b1" - integrity sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA== - dependencies: - hosted-git-info "^6.0.0" - proc-log "^3.0.0" - semver "^7.3.5" - validate-npm-package-name "^5.0.0" - -npm-packlist@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-5.1.1.tgz#79bcaf22a26b6c30aa4dd66b976d69cc286800e0" - integrity sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw== - dependencies: - glob "^8.0.1" - ignore-walk "^5.0.1" - npm-bundled "^1.1.2" - npm-normalize-package-bin "^1.0.1" - -npm-packlist@^7.0.0: - version "7.0.4" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-7.0.4.tgz#033bf74110eb74daf2910dc75144411999c5ff32" - integrity sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q== - dependencies: - ignore-walk "^6.0.0" - -npm-pick-manifest@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz#c6acd97d1ad4c5dbb80eac7b386b03ffeb289e5f" - integrity sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA== - dependencies: - 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@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.5: - version "14.0.5" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d" - integrity sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA== - 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" - -npm-run-all@4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" - integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== - 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" - -npm-run-path@^4.0.0, npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npmlog@^6.0.0, npmlog@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" - integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== - dependencies: - are-we-there-yet "^3.0.0" - console-control-strings "^1.1.0" - gauge "^4.0.3" - set-blocking "^2.0.0" - -nth-check@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -nwsapi@^2.2.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.4.tgz#fd59d5e904e8e1f03c25a7d5a15cfa16c714a1e5" - integrity sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g== - -nx@16.9.1, "nx@>=16.5.1 < 17": - version "16.9.1" - resolved "https://registry.yarnpkg.com/nx/-/nx-16.9.1.tgz#eac231c4cdfd6b3f7088d57289e215fbd539b7a1" - integrity sha512-h6jp0fXzEsBO3pwCNS2JbfzJZRgE2DnIo7Sj1/1oBo82o44jNqsPo3nMTj95qhcveJ0qBiKIh+Xw/fghXiRiSQ== - dependencies: - "@nrwl/tao" "16.9.1" - "@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 "~16.3.1" - dotenv-expand "~10.0.0" - enquirer "~2.3.6" - 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.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" - optionalDependencies: - "@nx/nx-darwin-arm64" "16.9.1" - "@nx/nx-darwin-x64" "16.9.1" - "@nx/nx-freebsd-x64" "16.9.1" - "@nx/nx-linux-arm-gnueabihf" "16.9.1" - "@nx/nx-linux-arm64-gnu" "16.9.1" - "@nx/nx-linux-arm64-musl" "16.9.1" - "@nx/nx-linux-x64-gnu" "16.9.1" - "@nx/nx-linux-x64-musl" "16.9.1" - "@nx/nx-win32-arm64-msvc" "16.9.1" - "@nx/nx-win32-x64-msvc" "16.9.1" - -nyc@15.1.0: - version "15.1.0" - resolved "https://registry.yarnpkg.com/nyc/-/nyc-15.1.0.tgz#1335dae12ddc87b6e249d5a1994ca4bdaea75f02" - integrity sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A== - dependencies: - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - caching-transform "^4.0.0" - convert-source-map "^1.7.0" - decamelize "^1.2.0" - find-cache-dir "^3.2.0" - find-up "^4.1.0" - foreground-child "^2.0.0" - get-package-type "^0.1.0" - glob "^7.1.6" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-hook "^3.0.0" - istanbul-lib-instrument "^4.0.0" - istanbul-lib-processinfo "^2.0.2" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - make-dir "^3.0.0" - node-preload "^0.2.1" - p-map "^3.0.0" - process-on-spawn "^1.0.0" - resolve-from "^5.0.0" - rimraf "^3.0.0" - signal-exit "^3.0.2" - spawn-wrap "^2.0.0" - test-exclude "^6.0.0" - yargs "^15.0.2" - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-assign@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-inspect@^1.12.3, object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -one-time@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" - integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== - dependencies: - fn.name "1.x.x" - -onetime@^5.1.0, onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^8.4.0: - version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" - integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -ora@^5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - 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" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== - -os-tmpdir@^1.0.0, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - -os@0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/os/-/os-0.1.1.tgz#208845e89e193ad4d971474b93947736a56d13f3" - integrity sha512-jg06S2xr5De63mLjZVJDf3/k37tpjppr2LR7MUOsxv8XuUCVpCnvbCksXCBcB5gQqQf/K0+87WGTRlAj5q7r1A== - -osenv@^0.1.3: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -outdent@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" - integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== - -p-filter@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" - integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== - dependencies: - p-map "^2.0.0" - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== - -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2, p-limit@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== - dependencies: - p-limit "^1.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map-series@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2" - integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== - -p-map@4.0.0, p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-map@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" - integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== - -p-map@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" - integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== - dependencies: - aggregate-error "^3.0.0" - -p-pipe@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e" - integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== - -p-queue@6.6.2: - version "6.6.2" - resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" - integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== - dependencies: - eventemitter3 "^4.0.4" - p-timeout "^3.2.0" - -p-reduce@2.1.0, p-reduce@^2.0.0, p-reduce@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a" - integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== - -p-timeout@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" - integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== - dependencies: - p-finally "^1.0.0" - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -p-waterfall@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-2.1.1.tgz#63153a774f472ccdc4eb281cdb2967fcf158b2ee" - integrity sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw== - dependencies: - p-reduce "^2.0.0" - -package-hash@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-4.0.0.tgz#3537f654665ec3cc38827387fc904c163c54f506" - integrity sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ== - dependencies: - graceful-fs "^4.1.15" - hasha "^5.0.0" - lodash.flattendeep "^4.4.0" - release-zalgo "^1.0.0" - -pacote@^15.2.0: - version "15.2.0" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-15.2.0.tgz#0f0dfcc3e60c7b39121b2ac612bf8596e95344d3" - integrity sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA== - 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" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-json@^5.0.0, parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - 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" - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== - -parse-path@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" - integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog== - dependencies: - protocols "^2.0.0" - -parse-semver@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz#9a4afd6df063dc4826f93fba4a99cf223f666cb8" - integrity sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ== - dependencies: - semver "^5.1.0" - -parse-url@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d" - integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w== - dependencies: - parse-path "^7.0.0" - -parse5-htmlparser2-tree-adapter@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" - integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== - dependencies: - domhandler "^5.0.2" - parse5 "^7.0.0" - -parse5@^7.0.0, parse5@^7.1.1: - version "7.1.2" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" - integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== - dependencies: - entities "^4.4.0" - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-scurry@^1.6.1, path-scurry@^1.7.0: - version "1.9.2" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.9.2.tgz#90f9d296ac5e37e608028e28a447b11d385b3f63" - integrity sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg== - dependencies: - lru-cache "^9.1.1" - minipass "^5.0.0 || ^6.0.2" - -path-type@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== - dependencies: - pify "^3.0.0" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pathval@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" - integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== - -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pidtree@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" - integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== - -pify@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" - integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== - -pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pirates@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== - -pkg-dir@^4.1.0, pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -please-upgrade-node@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" - integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== - dependencies: - semver-compare "^1.0.0" - -preferred-pm@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.0.3.tgz#1b6338000371e3edbce52ef2e4f65eb2e73586d6" - integrity sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ== - dependencies: - find-up "^5.0.0" - find-yarn-workspace-root2 "1.2.16" - path-exists "^4.0.0" - which-pm "2.0.0" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - -prettier@2.8.7: - version "2.8.7" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450" - integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw== - -prettier@>=2.4.0, prettier@^2.2.0, prettier@^2.7.1: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== - -pretty-format@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" - integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== - dependencies: - "@jest/types" "^25.5.0" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^16.12.0" - -pretty-format@^29.0.0, pretty-format@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" - integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== - dependencies: - "@jest/schemas" "^29.4.3" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -pretty-format@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" - integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== - dependencies: - "@jest/schemas" "^29.6.3" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -proc-log@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" - integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== - -process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process-on-spawn@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/process-on-spawn/-/process-on-spawn-1.0.0.tgz#95b05a23073d30a17acfdc92a440efd2baefdc93" - integrity sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg== - dependencies: - fromentries "^1.2.0" - -progress@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - -prompts@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -promzard@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/promzard/-/promzard-1.0.0.tgz#3246f8e6c9895a77c0549cefb65828ac0f6c006b" - integrity sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig== - dependencies: - read "^2.0.0" - -protocols@^2.0.0, protocols@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86" - integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q== - -proxy-from-env@1.1.0, proxy-from-env@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -proxyquire@2.1.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/proxyquire/-/proxyquire-2.1.3.tgz#2049a7eefa10a9a953346a18e54aab2b4268df39" - integrity sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg== - dependencies: - fill-keys "^1.0.2" - module-not-found-error "^1.0.1" - resolve "^1.11.1" - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== - -psl@^1.1.28, psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -pure-rand@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" - integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== - -q@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== - -qs@~6.5.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" - integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== - -querystringify@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" - integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -react-is@^16.12.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -react-is@^18.0.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== - -read-cmd-shim@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz#640a08b473a49043e394ae0c7a34dd822c73b9bb" - integrity sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q== - -read-package-json-fast@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz#394908a9725dc7a5f14e70c8e7556dff1d2b1049" - integrity sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw== - dependencies: - json-parse-even-better-errors "^3.0.0" - npm-normalize-package-bin "^3.0.0" - -read-package-json@6.0.4, read-package-json@^6.0.0: - version "6.0.4" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.4.tgz#90318824ec456c287437ea79595f4c2854708836" - integrity sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw== - 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" - -read-pkg-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" - integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== - dependencies: - find-up "^2.0.0" - read-pkg "^3.0.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== - dependencies: - load-json-file "^4.0.0" - normalize-package-data "^2.3.2" - path-type "^3.0.0" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -read-yaml-file@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" - integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== - dependencies: - graceful-fs "^4.1.5" - js-yaml "^3.6.1" - pify "^4.0.1" - strip-bom "^3.0.0" - -read@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" - integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== - dependencies: - mute-stream "~0.0.4" - -read@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/read/-/read-2.1.0.tgz#69409372c54fe3381092bc363a00650b6ac37218" - integrity sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ== - dependencies: - mute-stream "~1.0.0" - -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@^2.0.2, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - 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" - -realpath-native@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" - integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q== - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== - dependencies: - resolve "^1.1.6" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -regenerator-runtime@^0.13.11: - version "0.13.11" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== - -regexp-to-ast@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz#56c73856bee5e1fef7f73a00f1473452ab712a24" - integrity sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw== - -regexp.prototype.flags@^1.4.3: - version "1.5.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" - integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - functions-have-names "^1.2.3" - -regexpp@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -release-zalgo@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" - integrity sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA== - dependencies: - es6-error "^4.0.1" - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== - -replace-ext@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a" - integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== - -request@^2.88.2: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - 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" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-dir@^1.0.0, resolve-dir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg== - dependencies: - expand-tilde "^2.0.0" - global-modules "^1.0.0" - -resolve-from@5.0.0, resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-global@1.0.0, resolve-global@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255" - integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== - dependencies: - global-dirs "^0.1.1" - -resolve.exports@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" - integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== - -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg== - -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.1, resolve@^1.17.0, resolve@^1.20.0: - version "1.22.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rfdc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" - integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== - -rimraf@2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rimraf@^4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.4.1.tgz#bd33364f67021c5b79e93d7f4fa0568c7c21b755" - integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og== - dependencies: - glob "^9.2.0" - -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rxjs@^7.5.1, rxjs@^7.5.5: - version "7.8.1" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - -safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - is-regex "^1.1.4" - -safe-stable-stringify@^2.3.1: - version "2.4.3" - resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz#138c84b6f6edb3db5f8ef3ef7115b8f55ccbf886" - integrity sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g== - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sax@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -saxes@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" - integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== - dependencies: - xmlchars "^2.2.0" - -schema-utils@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.2.tgz#36c10abca6f7577aeae136c804b0c741edeadc99" - integrity sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" - -semver-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" - integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== - -"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.3.2: - version "7.3.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" - integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== - -semver@7.3.7: - version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== - dependencies: - lru-cache "^6.0.0" - -semver@7.5.3, semver@^7.3.8: - version "7.5.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" - integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== - dependencies: - lru-cache "^6.0.0" - -semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: - version "7.5.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" - integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.5.3: - version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== - dependencies: - lru-cache "^6.0.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -setimmediate@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== - dependencies: - kind-of "^6.0.2" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.6.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== - -shelljs@^0.8.4: - version "0.8.5" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" - integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -shx@0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.3.tgz#681a88c7c10db15abe18525349ed474f0f1e7b9f" - integrity sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA== - dependencies: - minimist "^1.2.3" - shelljs "^0.8.4" - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@3.0.7, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" - integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== - -sigstore@^1.3.0, sigstore@^1.4.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.6.0.tgz#887a4007c6ee83f3ef3fd844be1a0840e849c301" - integrity sha512-QODKff/qW/TXOZI6V/Clqu74xnInAS6it05mufj4/fSewexLtfEntgLZZcBtUK44CDQyUE5TUXYy1ARYzlfG9g== - dependencies: - "@sigstore/protobuf-specs" "^0.1.0" - "@sigstore/tuf" "^1.0.0" - make-fetch-happen "^11.0.1" - tuf-js "^1.1.3" - -simple-git@3.12.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.12.0.tgz#12fa8e762d8d9629fb1c72a0e2b4e6ae5b1f11e8" - integrity sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA== - dependencies: - "@kwsites/file-exists" "^1.1.1" - "@kwsites/promise-deferred" "^1.1.1" - debug "^4.3.4" - -simple-swizzle@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== - dependencies: - is-arrayish "^0.3.1" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@3.0.0, slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -smartwrap@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-2.0.2.tgz#7e25d3dd58b51c6ca4aba3a9e391650ea62698a4" - integrity sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA== - dependencies: - array.prototype.flat "^1.2.3" - breakword "^1.0.5" - grapheme-splitter "^1.0.4" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - yargs "^15.1.0" - -socks-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" - integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== - dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" - -socks@^2.6.2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== - dependencies: - ip "^2.0.0" - smart-buffer "^4.2.0" - -sort-any@^1.1.21: - version "1.2.9" - resolved "https://registry.yarnpkg.com/sort-any/-/sort-any-1.2.9.tgz#82b2513a68ad8aae6f2763fbc6212868b1aad0ca" - integrity sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw== - dependencies: - lodash "^4.17.21" - -sort-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" - integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== - dependencies: - is-plain-obj "^1.0.0" - -source-map-support@0.5.13: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@0.5.19: - version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@^0.5.6: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@0.5.6: - version "0.5.6" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" - integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -spawn-wrap@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-2.0.0.tgz#103685b8b8f9b79771318827aa78650a610d457e" - integrity sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg== - dependencies: - foreground-child "^2.0.0" - is-windows "^1.0.2" - make-dir "^3.0.0" - rimraf "^3.0.0" - signal-exit "^3.0.2" - which "^2.0.1" - -spawndamnit@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" - integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== - dependencies: - cross-spawn "^5.1.0" - signal-exit "^3.0.2" - -spdx-correct@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.13" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" - integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== - -split2@^3.0.0, split2@^3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" - integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== - dependencies: - readable-stream "^3.0.0" - -split@^1.0.0, split@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== - dependencies: - through "2" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -sshpk@^1.7.0: - version "1.17.0" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" - integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== - 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" - -ssri@^10.0.0, ssri@^10.0.1: - version "10.0.4" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.4.tgz#5a20af378be586df139ddb2dfb3bf992cf0daba6" - integrity sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ== - dependencies: - minipass "^5.0.0" - -ssri@^9.0.0, ssri@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" - integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== - dependencies: - minipass "^3.1.1" - -stack-generator@^2.0.5: - version "2.0.10" - resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.10.tgz#8ae171e985ed62287d4f1ed55a1633b3fb53bb4d" - integrity sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ== - dependencies: - stackframe "^1.3.4" - -stack-trace@0.0.x: - version "0.0.10" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" - integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== - -stack-utils@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.5.tgz#a19b0b01947e0029c8e451d5d61a498f5bb1471b" - integrity sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ== - dependencies: - escape-string-regexp "^2.0.0" - -stack-utils@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" - integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== - dependencies: - escape-string-regexp "^2.0.0" - -stackframe@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" - integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== - -stacktrace-gps@^3.0.4: - version "3.1.2" - resolved "https://registry.yarnpkg.com/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz#0c40b24a9b119b20da4525c398795338966a2fb0" - integrity sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ== - dependencies: - source-map "0.5.6" - stackframe "^1.3.4" - -stacktrace-js@2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stacktrace-js/-/stacktrace-js-2.0.2.tgz#4ca93ea9f494752d55709a081d400fdaebee897b" - integrity sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg== - dependencies: - error-stack-parser "^2.0.6" - stack-generator "^2.0.5" - stacktrace-gps "^3.0.4" - -stdin@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/stdin/-/stdin-0.0.1.tgz#d3041981aaec3dfdbc77a1b38d6372e38f5fb71e" - integrity sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ== - -stream-transform@^2.1.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3" - integrity sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ== - dependencies: - mixme "^0.5.1" - -streamroller@2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-2.2.3.tgz#b95c9fad44e2e89005d242141486b3b4962c2d28" - integrity sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw== - dependencies: - date-format "^2.1.0" - debug "^4.1.1" - fs-extra "^8.1.0" - -string-argv@0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" - integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-replace-loader@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-replace-loader/-/string-replace-loader-3.1.0.tgz#11ac6ee76bab80316a86af358ab773193dd57a4f" - integrity sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^5.0.1, string-width@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string.prototype.padend@^3.0.0: - version "3.1.4" - resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz#2c43bb3a89eb54b6750de5942c123d6c98dd65b6" - integrity sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trim@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" - integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimend@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" - integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimstart@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" - integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -stringify-object@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" - integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== - dependencies: - get-own-enumerable-property-symbols "^3.0.0" - is-obj "^1.0.1" - is-regexp "^1.0.0" - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== - dependencies: - ansi-regex "^6.0.1" - -strip-bom-buf@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" - integrity sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ== - dependencies: - is-utf8 "^0.2.1" - -strip-bom-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca" - integrity sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w== - dependencies: - first-chunk-stream "^2.0.0" - strip-bom "^2.0.0" - -strip-bom@4.0.0, strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g== - dependencies: - is-utf8 "^0.2.0" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strong-log-transformer@2.1.0, strong-log-transformer@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10" - integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA== - dependencies: - duplexer "^0.1.1" - minimist "^1.2.0" - through "^2.3.4" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -table@^6.0.4: - version "6.8.1" - resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" - integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== - dependencies: - ajv "^8.0.1" - lodash.truncate "^4.4.2" - slice-ansi "^4.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - -tar-stream@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - 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" - -tar@6.1.11: - version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" - integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -tar@^6.1.11, tar@^6.1.2: - version "6.1.15" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" - integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== - 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" - -temp-dir@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" - integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== - -temp-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" - integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== - -tempfile@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-3.0.0.tgz#5376a3492de7c54150d0cc0612c3f00e2cdaf76c" - integrity sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw== - dependencies: - temp-dir "^2.0.0" - uuid "^3.3.2" - -term-size@^2.1.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" - integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-extensions@^1.0.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" - integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== - -text-hex@1.0.x: - version "1.0.0" - resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" - integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -textextensions@^5.13.0: - version "5.16.0" - resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-5.16.0.tgz#57dd60c305019bba321e848b1fdf0f99bfa59ec1" - integrity sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw== - -thenify-all@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" - integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== - dependencies: - thenify ">= 3.1.0 < 4" - -"thenify@>= 3.1.0 < 4": - version "3.3.1" - resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" - integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== - dependencies: - any-promise "^1.0.0" - -through2@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through2@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -timers-ext@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6" - integrity sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ== - dependencies: - es5-ext "~0.10.46" - next-tick "1" - -tmp-promise@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.2.tgz#6e933782abff8b00c3119d63589ca1fb9caaa62a" - integrity sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA== - dependencies: - tmp "^0.2.0" - -tmp@0.0.29: - version "0.0.29" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" - integrity sha512-89PTqMWGDva+GqClOqBV9s3SMh7MA3Mq0pJUdAoHuF65YoE7O0LermaZkVfT5/Ngfo18H4eYiyG7zKOtnEbxsw== - dependencies: - os-tmpdir "~1.0.1" - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -tmp@^0.2.0, tmp@~0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" - integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== - dependencies: - rimraf "^3.0.0" - -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -tough-cookie@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874" - integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.2.0" - url-parse "^1.5.3" - -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tr46@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" - integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== - dependencies: - punycode "^2.1.1" - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -"traverse@>=0.3.0 <0.4": - version "0.3.9" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" - integrity sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ== - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -triple-beam@1.3.0, triple-beam@^1.2.0, triple-beam@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" - integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== - -ts-jest@29.0.5: - version "29.0.5" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.0.5.tgz#c5557dcec8fe434fcb8b70c3e21c6b143bfce066" - integrity sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA== - 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.x" - yargs-parser "^21.0.1" - -ts-node@8.5.2: - version "8.5.2" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.5.2.tgz#434f6c893bafe501a30b32ac94ee36809ba2adce" - integrity sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A== - dependencies: - arg "^4.1.0" - diff "^4.0.1" - make-error "^1.1.1" - source-map-support "^0.5.6" - yn "^3.0.0" - -ts-node@^10.8.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - 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" - -tsconfig-paths@^4.1.2: - version "4.2.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" - integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== - dependencies: - json5 "^2.2.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" - integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== - -tsutils@^3.17.1, tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tty-table@^4.1.5: - version "4.2.1" - resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-4.2.1.tgz#c06cd76c54542acf4e2b4a0e9a5802984b65cba6" - integrity sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g== - dependencies: - chalk "^4.1.2" - csv "^5.5.3" - kleur "^4.1.5" - smartwrap "^2.0.2" - strip-ansi "^6.0.1" - wcwidth "^1.0.1" - yargs "^17.7.1" - -tuf-js@^1.1.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43" - integrity sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg== - dependencies: - "@tufjs/models" "1.0.4" - debug "^4.3.4" - make-fetch-happen "^11.1.1" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -tunnel@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.4.tgz#2d3785a158c174c9a16dc2c046ec5fc5f1742213" - integrity sha512-o9QYRJN5WgS8oCtqvwzzcfnzaTnDPr7HpUsQdSXscTyzXbjvl4wSHPTUKOKzEaDeQvOuyRtt3ui+ujM7x7TReQ== - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" - integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" - integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.0, type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" - integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== - -typed-array-length@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" - integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== - dependencies: - call-bind "^1.0.2" - for-each "^0.3.3" - is-typed-array "^1.1.9" - -typed-rest-client@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.2.0.tgz#723085d203f38d7d147271e5ed3a75488eb44a02" - integrity sha512-FrUshzZ1yxH8YwGR29PWWnfksLEILbWJydU7zfIRkyH7kAEzB62uMAl2WY6EyolWpLpVHeJGgQm45/MaruaHpw== - dependencies: - tunnel "0.0.4" - underscore "1.8.3" - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - -typescript@4.9.4: - version "4.9.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" - integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== - -"typescript@>=3 < 6": - version "5.1.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== - -"typescript@^4.6.4 || ^5.0.0": - version "5.0.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== - -uc.micro@^1.0.1, uc.micro@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" - integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== - -uglify-js@^3.1.4: - version "3.17.4" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" - integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -underscore@1.8.3: - version "1.8.3" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" - integrity sha512-5WsVTFcH1ut/kkhAaHf4PVgI8c7++GiVcpCGxPouI6ZVjsqPnSDf8h/8HtVqc0t4fzRXwnMK70EcZeAs3PIddg== - -unique-filename@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== - dependencies: - unique-slug "^3.0.0" - -unique-filename@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" - integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== - dependencies: - unique-slug "^4.0.0" - -unique-slug@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== - dependencies: - imurmurhash "^0.1.4" - -unique-slug@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" - integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== - dependencies: - imurmurhash "^0.1.4" - -universal-user-agent@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" - integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== - -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -universalify@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" - integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -unzipper@^0.10.11: - version "0.10.14" - resolved "https://registry.yarnpkg.com/unzipper/-/unzipper-0.10.14.tgz#d2b33c977714da0fbc0f82774ad35470a7c962b1" - integrity sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g== - dependencies: - big-integer "^1.6.17" - binary "~0.3.0" - bluebird "~3.4.1" - buffer-indexof-polyfill "~1.0.0" - duplexer2 "~0.1.4" - fstream "^1.0.12" - graceful-fs "^4.2.2" - listenercount "~1.0.1" - readable-stream "~2.3.6" - setimmediate "~1.0.4" - -upath@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" - integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== - -update-browserslist-db@^1.0.10: - version "1.0.11" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-join@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" - integrity sha512-zz1wZk4Lb5PTVwZ3HWDmm8XnlPvmOof6/fjdDPA5yBrUcbtV64U6bV832Zf1BtU2WkBBWaUT46wCs+l0HP5nhg== - -url-parse@^1.5.3: - version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" - integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -uuid@^3.3.2: - version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -uuid@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" - integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -v8-compile-cache@2.3.0, v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - -v8-to-istanbul@^9.0.1: - version "9.1.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" - integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - -validate-npm-package-license@3.0.4, validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -validate-npm-package-name@5.0.0, validate-npm-package-name@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713" - integrity sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ== - dependencies: - builtins "^5.0.0" - -validate-npm-package-name@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" - integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== - dependencies: - builtins "^1.0.3" - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -vinyl-file@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-3.0.0.tgz#b104d9e4409ffa325faadd520642d0a3b488b365" - integrity sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg== - dependencies: - graceful-fs "^4.1.2" - pify "^2.3.0" - strip-bom-buf "^1.0.0" - strip-bom-stream "^2.0.0" - vinyl "^2.0.1" - -vinyl@^2.0.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.1.tgz#23cfb8bbab5ece3803aa2c0a1eb28af7cbba1974" - integrity sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw== - dependencies: - clone "^2.1.1" - clone-buffer "^1.0.0" - clone-stats "^1.0.0" - cloneable-readable "^1.0.0" - remove-trailing-separator "^1.0.1" - replace-ext "^1.0.0" - -vsce@1.83.0: - version "1.83.0" - resolved "https://registry.yarnpkg.com/vsce/-/vsce-1.83.0.tgz#61774e5389a8654e307c65ec392cf61534f65bcb" - integrity sha512-gyF/xtCOFcKO+EvC0FQu5jPECHz2XKMWcw62gqwJJ22lVvlj58t49sWe1IGl9S5NpxCek+QMm6V9i/cDwGWs/Q== - dependencies: - azure-devops-node-api "^7.2.0" - chalk "^2.4.2" - cheerio "^1.0.0-rc.1" - commander "^6.1.0" - denodeify "^1.2.1" - glob "^7.0.6" - leven "^3.1.0" - lodash "^4.17.15" - markdown-it "^10.0.0" - mime "^1.3.4" - minimatch "^3.0.3" - osenv "^0.1.3" - parse-semver "^1.1.1" - read "^1.0.7" - semver "^5.1.0" - tmp "0.0.29" - typed-rest-client "1.2.0" - url-join "^1.1.0" - yauzl "^2.3.1" - yazl "^2.2.2" - -vscode-jsonrpc@8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-8.0.2.tgz#f239ed2cd6004021b6550af9fd9d3e47eee3cac9" - integrity sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ== - -vscode-languageclient@8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/vscode-languageclient/-/vscode-languageclient-8.0.2.tgz#f1f23ce8c8484aa11e4b7dfb24437d3e59bb61c6" - integrity sha512-lHlthJtphG9gibGb/y72CKqQUxwPsMXijJVpHEC2bvbFqxmkj9LwQ3aGU9dwjBLqsX1S4KjShYppLvg1UJDF/Q== - dependencies: - minimatch "^3.0.4" - semver "^7.3.5" - vscode-languageserver-protocol "3.17.2" - -vscode-languageserver-protocol@3.17.2: - version "3.17.2" - resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.2.tgz#beaa46aea06ed061576586c5e11368a9afc1d378" - integrity sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg== - dependencies: - vscode-jsonrpc "8.0.2" - vscode-languageserver-types "3.17.2" - -vscode-languageserver-textdocument@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f" - integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA== - -vscode-languageserver-textdocument@^1.0.7: - version "1.0.8" - resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz#9eae94509cbd945ea44bca8dcfe4bb0c15bb3ac0" - integrity sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q== - -vscode-languageserver-types@3.17.2: - version "3.17.2" - resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.2.tgz#b2c2e7de405ad3d73a883e91989b850170ffc4f2" - integrity sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA== - -vscode-languageserver@8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-8.0.2.tgz#cfe2f0996d9dfd40d3854e786b2821604dfec06d" - integrity sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA== - dependencies: - vscode-languageserver-protocol "3.17.2" - -vscode-test@1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/vscode-test/-/vscode-test-1.6.1.tgz#44254c67036de92b00fdd72f6ace5f1854e1a563" - integrity sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA== - dependencies: - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - rimraf "^3.0.2" - unzipper "^0.10.11" - -vscode-uri@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-2.1.2.tgz#c8d40de93eb57af31f3c715dd650e2ca2c096f1c" - integrity sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A== - -w3c-xmlserializer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" - integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== - dependencies: - xml-name-validator "^4.0.0" - -walker@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -wcwidth@^1.0.0, wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -webidl-conversions@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" - integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== - -whatwg-encoding@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" - integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== - dependencies: - iconv-lite "0.6.3" - -whatwg-mimetype@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" - integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== - -whatwg-url@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" - integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== - dependencies: - tr46 "^3.0.0" - webidl-conversions "^7.0.0" - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - 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" - -which-module@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" - integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== - -which-pm@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae" - integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w== - dependencies: - load-yaml-file "^0.2.0" - path-exists "^4.0.0" - -which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== - 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" - -which@^1.2.14, which@^1.2.9: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -which@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1" - integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - -winston-transport@4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.3.0.tgz#df68c0c202482c448d9b47313c07304c2d7c2c66" - integrity sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A== - dependencies: - readable-stream "^2.3.6" - triple-beam "^1.2.0" - -winston-transport@^4.4.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.5.0.tgz#6e7b0dd04d393171ed5e4e4905db265f7ab384fa" - integrity sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q== - dependencies: - logform "^2.3.2" - readable-stream "^3.6.0" - triple-beam "^1.3.0" - -winston@3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/winston/-/winston-3.3.3.tgz#ae6172042cafb29786afa3d09c8ff833ab7c9170" - integrity sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw== - dependencies: - "@dabh/diagnostics" "^2.0.2" - async "^3.1.0" - is-stream "^2.0.0" - logform "^2.2.0" - one-time "^1.0.0" - readable-stream "^3.4.0" - stack-trace "0.0.x" - triple-beam "^1.3.0" - winston-transport "^4.4.0" - -word-wrap@^1.0.3, word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" - integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7" - integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^4.0.1" - -write-file-atomic@^2.4.2: - version "2.4.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" - integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - signal-exit "^3.0.2" - -write-file-atomic@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== - dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" - -write-file-atomic@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" - integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -write-json-file@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" - integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ== - dependencies: - detect-indent "^5.0.0" - graceful-fs "^4.1.15" - make-dir "^2.1.0" - pify "^4.0.1" - sort-keys "^2.0.0" - write-file-atomic "^2.4.2" - -write-pkg@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039" - integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA== - dependencies: - sort-keys "^2.0.0" - type-fest "^0.4.1" - write-json-file "^3.2.0" - -ws@^8.11.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - -xml-js@1.6.11: - version "1.6.11" - resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9" - integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== - dependencies: - sax "^1.2.4" - -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== - -xml@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" - integrity sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw== - -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.2.tgz#ec551ef37326e6d42872dad1970300f8eb83a073" - integrity sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== - -yaml@^1.10.0: - version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yargs-parser@20.2.4: - version "20.2.4" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" - integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== - -yargs-parser@21.1.1, yargs-parser@^21.0.1, yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs-parser@^18.1.2, yargs-parser@^18.1.3: - version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^20.2.2, yargs-parser@^20.2.3: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs@16.2.0, yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - 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" - -yargs@^15.0.2, yargs@^15.1.0: - version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== - dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^18.1.2" - -yargs@^17.3.1, yargs@^17.6.2, yargs@^17.7.1: - version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - 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" - -yauzl@^2.3.1: - version "2.10.0" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== - dependencies: - buffer-crc32 "~0.2.3" - fd-slicer "~1.1.0" - -yazl@^2.2.2: - version "2.5.1" - resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35" - integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw== - dependencies: - buffer-crc32 "~0.2.3" - -yn@3.1.1, yn@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== From 05cb70e262d8762031d1c202c45c598d2a26913e Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Thu, 5 Sep 2024 16:12:52 +0200 Subject: [PATCH 2/9] fix: adapt for new pacakges --- package.json | 3 + packages/context/package.json | 2 +- packages/language-server/package.json | 4 +- packages/logic-utils/package.json | 2 +- packages/semantic-model-types/package.json | 2 +- packages/semantic-model/package.json | 2 +- .../package.json | 2 +- packages/xml-views-completion/package.json | 2 +- packages/xml-views-tooltip/package.json | 2 +- packages/xml-views-validation/package.json | 2 +- pnpm-lock.yaml | 414 ++++++++---------- test-packages/test-utils/package.json | 2 +- 12 files changed, 185 insertions(+), 254 deletions(-) diff --git a/package.json b/package.json index 25f95643e..4c21ed338 100644 --- a/package.json +++ b/package.json @@ -84,6 +84,9 @@ "node": ">=18.x" }, "packageManager": "pnpm@8.14.0", + "pnpm": { + "overrides": {} + }, "lint-staged": { "*.{js,ts,md,json}": [ "prettier --write" diff --git a/packages/context/package.json b/packages/context/package.json index fdfea4651..4852e52c1 100644 --- a/packages/context/package.json +++ b/packages/context/package.json @@ -21,8 +21,8 @@ "@ui5-language-assistant/logger": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/settings": "workspace:*", + "@ui5-language-assistant/constant": "workspace:*", "@sap-ux/project-access": "1.25.5", - "@ui5-language-assistant/constant": "0.0.1", "fs-extra": "10.1.0", "globby": "11.1.0", "js-yaml": "4.1.0", diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 3eaa04975..1370dd156 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -38,8 +38,8 @@ "@ui5-language-assistant/xml-views-quick-fix": "workspace:*", "@ui5-language-assistant/xml-views-tooltip": "workspace:*", "@ui5-language-assistant/xml-views-validation": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", - "@ui5-language-assistant/xml-views-definition": "0.0.7", + "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/xml-views-definition": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "@xml-tools/parser": "1.0.7", diff --git a/packages/logic-utils/package.json b/packages/logic-utils/package.json index 801e5031d..ce100a6a3 100644 --- a/packages/logic-utils/package.json +++ b/packages/logic-utils/package.json @@ -18,7 +18,7 @@ "dependencies": { "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/settings": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "@ui5-language-assistant/logger": "workspace:*", "@xml-tools/ast": "5.0.0", "lodash": "4.17.21", diff --git a/packages/semantic-model-types/package.json b/packages/semantic-model-types/package.json index ef1ffd3e8..ceabecf46 100644 --- a/packages/semantic-model-types/package.json +++ b/packages/semantic-model-types/package.json @@ -22,6 +22,6 @@ "coverage": "echo nothing to test" }, "dependencies": { - "@ui5-language-assistant/constant": "0.0.1" + "@ui5-language-assistant/constant": "workspace:*" } } diff --git a/packages/semantic-model/package.json b/packages/semantic-model/package.json index e00f19612..dffc843a2 100644 --- a/packages/semantic-model/package.json +++ b/packages/semantic-model/package.json @@ -19,7 +19,7 @@ "dependencies": { "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/logger": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "ajv": "6.12.3", "deep-freeze-strict": "1.1.1", "fs-extra": "10.1.0", diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index cc432867c..e667f0186 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -166,7 +166,7 @@ "@ui5-language-assistant/settings": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/user-facing-text": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "lodash": "4.17.21", "proxyquire": "2.1.3", "vsce": "1.83.0", diff --git a/packages/xml-views-completion/package.json b/packages/xml-views-completion/package.json index ad638c6d9..0e1350b7a 100644 --- a/packages/xml-views-completion/package.json +++ b/packages/xml-views-completion/package.json @@ -23,7 +23,7 @@ "dependencies": { "@ui5-language-assistant/context": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/common": "0.1.2", "@xml-tools/content-assist": "3.1.7", diff --git a/packages/xml-views-tooltip/package.json b/packages/xml-views-tooltip/package.json index 3b3665c7b..2df5646c7 100644 --- a/packages/xml-views-tooltip/package.json +++ b/packages/xml-views-tooltip/package.json @@ -26,7 +26,7 @@ "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/semantic-model": "workspace:*", "@ui5-language-assistant/semantic-model-types": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "@xml-tools/common": "0.1.2", diff --git a/packages/xml-views-validation/package.json b/packages/xml-views-validation/package.json index f23a0e108..365813905 100644 --- a/packages/xml-views-validation/package.json +++ b/packages/xml-views-validation/package.json @@ -25,7 +25,7 @@ "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/user-facing-text": "workspace:*", "@ui5-language-assistant/context": "workspace:*", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "vscode-languageserver-types": "3.17.2", "@xml-tools/ast": "5.0.0", "@xml-tools/common": "0.1.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a8d0694a9..60c55feb2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -137,9 +137,6 @@ importers: npm-run-all: specifier: 4.1.5 version: 4.1.5 - nyc: - specifier: 15.1.0 - version: 15.1.0 prettier: specifier: 2.8.7 version: 2.8.7 @@ -196,8 +193,8 @@ importers: version: 4.17.21 devDependencies: '@sap-ux/vocabularies-types': - specifier: 0.7.4 - version: 0.7.4 + specifier: 0.10.14 + version: 0.10.14 '@types/lodash': specifier: 4.14.168 version: 4.14.168 @@ -236,6 +233,8 @@ importers: specifier: 7.0.3 version: 7.0.3 + packages/constant: {} + packages/context: dependencies: '@sap-ux/annotation-converter': @@ -245,8 +244,11 @@ importers: specifier: 0.5.13 version: 0.5.13 '@sap-ux/project-access': - specifier: 1.9.1 - version: 1.9.1 + specifier: 1.25.5 + version: 1.25.5 + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant '@ui5-language-assistant/logger': specifier: workspace:* version: link:../logger @@ -256,6 +258,12 @@ importers: '@ui5-language-assistant/settings': specifier: workspace:* version: link:../settings + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 fs-extra: specifier: 10.1.0 version: 10.1.0 @@ -279,8 +287,8 @@ importers: version: 2.1.2 devDependencies: '@sap-ux/vocabularies-types': - specifier: 0.6.8 - version: 0.6.8 + specifier: 0.10.14 + version: 0.10.14 '@types/js-yaml': specifier: 4.0.5 version: 4.0.5 @@ -334,8 +342,8 @@ importers: version: 4.17.21 devDependencies: '@sap-ux/vocabularies-types': - specifier: 0.6.8 - version: 0.6.8 + specifier: 0.10.14 + version: 0.10.14 '@types/lodash': specifier: 4.14.168 version: 4.14.168 @@ -369,6 +377,9 @@ importers: '@ui5-language-assistant/binding': specifier: workspace:* version: link:../binding + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant '@ui5-language-assistant/context': specifier: workspace:* version: link:../context @@ -393,6 +404,9 @@ importers: '@ui5-language-assistant/xml-views-completion': specifier: workspace:* version: link:../xml-views-completion + '@ui5-language-assistant/xml-views-definition': + specifier: workspace:* + version: link:../xml-views-definition '@ui5-language-assistant/xml-views-quick-fix': specifier: workspace:* version: link:../xml-views-quick-fix @@ -470,6 +484,12 @@ importers: packages/logic-utils: dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant + '@ui5-language-assistant/logger': + specifier: workspace:* + version: link:../logger '@ui5-language-assistant/semantic-model-types': specifier: workspace:* version: link:../semantic-model-types @@ -479,6 +499,9 @@ importers: '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 + chevrotain: + specifier: 7.0.1 + version: 7.0.1 https-proxy-agent: specifier: 5.0.1 version: 5.0.1 @@ -501,9 +524,15 @@ importers: '@xml-tools/parser': specifier: 1.0.7 version: 1.0.7 + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 packages/semantic-model: dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant '@ui5-language-assistant/logger': specifier: workspace:* version: link:../logger @@ -533,7 +562,11 @@ importers: specifier: 10.0.3 version: 10.0.3 - packages/semantic-model-types: {} + packages/semantic-model-types: + dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant packages/settings: dependencies: @@ -568,6 +601,9 @@ importers: '@types/vscode': specifier: 1.47.0 version: 1.47.0 + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils @@ -580,12 +616,18 @@ importers: '@ui5-language-assistant/user-facing-text': specifier: workspace:* version: link:../user-facing-text + axios: + specifier: 1.6.1 + version: 1.6.1 lodash: specifier: 4.17.21 version: 4.17.21 proxyquire: specifier: 2.1.3 version: 2.1.3 + ts-node: + specifier: 8.5.2 + version: 8.5.2(typescript@4.9.4) vsce: specifier: 1.83.0 version: 1.83.0 @@ -607,6 +649,9 @@ importers: packages/xml-views-completion: dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant '@ui5-language-assistant/context': specifier: workspace:* version: link:../context @@ -639,8 +684,42 @@ importers: specifier: 7.0.1 version: 7.0.1 + packages/xml-views-definition: + dependencies: + '@ui5-language-assistant/binding-parser': + specifier: 1.0.7 + version: link:../binding-parser + '@ui5-language-assistant/context': + specifier: 4.0.29 + version: link:../context + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + vscode-languageserver-textdocument: + specifier: 1.0.1 + version: 1.0.1 + vscode-uri: + specifier: 2.1.2 + version: 2.1.2 + devDependencies: + '@ui5-language-assistant/test-framework': + specifier: 4.0.12 + version: link:../../test-packages/framework + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + packages/xml-views-quick-fix: dependencies: + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils @@ -666,6 +745,9 @@ importers: packages/xml-views-tooltip: dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant '@ui5-language-assistant/context': specifier: workspace:* version: link:../context @@ -697,6 +779,12 @@ importers: packages/xml-views-validation: dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../constant + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils @@ -718,6 +806,12 @@ importers: lodash: specifier: 4.17.21 version: 4.17.21 + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 + vscode-uri: + specifier: 2.1.2 + version: 2.1.2 devDependencies: '@ui5-language-assistant/semantic-model': specifier: workspace:* @@ -762,6 +856,12 @@ importers: test-packages/test-utils: dependencies: + '@ui5-language-assistant/constant': + specifier: workspace:* + version: link:../../packages/constant + '@ui5-language-assistant/semantic-model-types': + specifier: 4.0.11 + version: link:../../packages/semantic-model-types https-proxy-agent: specifier: 5.0.1 version: 5.0.1 @@ -1421,7 +1521,7 @@ packages: engines: {node: '>=v10.22.0'} dependencies: '@commitlint/types': 11.0.0 - chalk: 4.1.0 + chalk: 4.1.2 dev: true /@commitlint/is-ignored@11.0.0: @@ -2101,7 +2201,7 @@ packages: resolution: {integrity: sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==} engines: {node: '>=16.0.0'} dependencies: - chalk: 4.1.0 + chalk: 4.1.2 execa: 5.0.0 strong-log-transformer: 2.1.0 dev: true @@ -2584,38 +2684,46 @@ packages: xml-js: 1.6.11 dev: false - /@sap-ux/project-access@1.9.1: - resolution: {integrity: sha512-ObLlzem77Vpe7C6I8UimPPQW7LrSq4zQ2PaYfUaLqamrG2cu9Knl+/xRBZz51ZbHWbN/2I2cdZRBfG695PewXw==} - engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=6.26.1 < 7.0.0 || >=7.1.0'} + /@sap-ux/i18n@0.1.0: + resolution: {integrity: sha512-v16e/m+DShlqQELz6/VQZ454FeHYr/JbQA20xGT62yKjuvhG1tSKHwBrss8NYT0A9Lr8XxrKZpUZghD0iqY1/A==} + engines: {node: '>=18.x'} + dependencies: + jsonc-parser: 3.2.0 + vscode-languageserver-textdocument: 1.0.7 + vscode-languageserver-types: 3.17.2 + dev: false + + /@sap-ux/project-access@1.25.5: + resolution: {integrity: sha512-ZBUneSOIoX8jRUUf+ffmD37wuIBikKOjmjfmMZ0dn6dp+HoQSSXhnObsP5//51d3stPZ27y40HOHkdOon3CmrQ==} + engines: {node: '>=18.x'} dependencies: - '@sap-ux/ui5-config': 0.18.2 + '@sap-ux/i18n': 0.1.0 + '@sap-ux/ui5-config': 0.23.1 + fast-xml-parser: 4.2.7 findit2: 2.2.3 + json-parse-even-better-errors: 3.0.2 mem-fs: 2.1.0 mem-fs-editor: 9.4.0(mem-fs@2.1.0) + semver: 7.5.4 dev: false - /@sap-ux/ui5-config@0.18.2: - resolution: {integrity: sha512-s/UsykJXbQIMmpcNjI2ChAIYBnQvnjJlp5n5QpT4XRHHwstExz2YCWz2vThXuF1GmwsCMzSjmhF+zTmGbTJ11w==} - engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=6.26.1 < 7.0.0 || >=7.1.0'} + /@sap-ux/ui5-config@0.23.1: + resolution: {integrity: sha512-2pfA5GX+Oho1SpRKgWdIiY6tW8L812Jjr/zNiDm27hmua0GKifIUxt5CanN11MB+YAwkg0rJwHH/2aWLeoFiuA==} + engines: {node: '>=18.x'} dependencies: - '@sap-ux/yaml': 0.13.7 + '@sap-ux/yaml': 0.16.0 lodash: 4.17.21 - semver: 7.5.3 + semver: 7.5.4 dev: false - /@sap-ux/vocabularies-types@0.6.8: - resolution: {integrity: sha512-58b1/E9hxSsIit9NMQ9oXCYNUaOT7kbQU1OKhAPVp3Pg2BMbkRo5p1SX6BSan4XmONUpao7yRUVZEG0dspR5qg==} - engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=7.3.0'} + /@sap-ux/vocabularies-types@0.10.14: + resolution: {integrity: sha512-PtjyRBQbjCFHE1TAXz3DXuyD46eoobAK3BmOsjS60o2dNHMU9EVL1/sbbeiB2917ZV0ARezd3C1BNEict5VXfg==} + engines: {node: '>=18.0.0 < 19.0.0 || >=20.0.0 < 21.0.0', pnpm: '>=8'} dev: true - /@sap-ux/vocabularies-types@0.7.4: - resolution: {integrity: sha512-JC2s7P7EOYvnubxqDIJYdZXA/aNvK78XqvB1sMyI4z+rf/mgTTID7mIf/2J3rSwHw+GjVrDK+UvSX3vJhomKew==} - engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=7.3.0'} - dev: true - - /@sap-ux/yaml@0.13.7: - resolution: {integrity: sha512-4638D6TyaBA43lnhWtkXVM2xFwgDh3u8DEsTmCEvvbh6SQsE09t/eheRSoBD1ryZVG9NmmasY2tMgy3JxEPV5A==} - engines: {node: '>= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0', pnpm: '>=6.26.1 < 7.0.0 || >=7.1.0'} + /@sap-ux/yaml@0.16.0: + resolution: {integrity: sha512-jojo+NDZyuguUmTznj+yof2luSRarfqR2x09jRoVhS0CT2oJaAxyd60yXRtuCUFW7FbuEii+jSf+aeBU7QSPVw==} + engines: {node: '>=18.x'} dependencies: lodash: 4.17.21 yaml: 2.2.2 @@ -3481,21 +3589,10 @@ packages: picomatch: 2.3.1 dev: true - /append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} - dependencies: - default-require-extensions: 3.0.1 - dev: true - /aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} dev: true - /archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - dev: true - /are-we-there-yet@3.0.1: resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -3617,8 +3714,8 @@ packages: resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} dev: true - /axios@1.6.5: - resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==} + /axios@1.6.1: + resolution: {integrity: sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==} dependencies: follow-redirects: 1.15.5 form-data: 4.0.0 @@ -3911,16 +4008,6 @@ packages: engines: {node: '>=6'} dev: true - /caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} - dependencies: - hasha: 5.2.2 - make-dir: 3.1.0 - package-hash: 4.0.0 - write-file-atomic: 3.0.3 - dev: true - /call-bind@1.0.5: resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: @@ -4313,6 +4400,7 @@ packages: /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + dev: false /compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} @@ -4576,10 +4664,6 @@ packages: meow: 8.1.2 dev: true - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - dev: true - /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} dev: true @@ -4886,13 +4970,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} - dependencies: - strip-bom: 4.0.0 - dev: true - /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: @@ -5254,10 +5331,6 @@ packages: next-tick: 1.1.0 dev: true - /es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - dev: true - /es6-iterator@2.0.3: resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} dependencies: @@ -5641,6 +5714,13 @@ packages: resolution: {integrity: sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==} dev: false + /fast-xml-parser@4.2.7: + resolution: {integrity: sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==} + hasBin: true + dependencies: + strnum: 1.0.5 + dev: false + /fastq@1.16.0: resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} dependencies: @@ -5695,15 +5775,6 @@ packages: dependencies: to-regex-range: 5.0.1 - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} - dependencies: - commondir: 1.0.1 - make-dir: 3.1.0 - pkg-dir: 4.2.0 - dev: true - /find-node-modules@2.1.3: resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} dependencies: @@ -5805,14 +5876,6 @@ packages: is-callable: 1.2.7 dev: true - /foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} - dependencies: - cross-spawn: 7.0.3 - signal-exit: 3.0.7 - dev: true - /foreground-child@3.1.1: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} @@ -5852,10 +5915,6 @@ packages: mime-types: 2.1.35 dev: true - /fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} - dev: true - /fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} dev: true @@ -6165,7 +6224,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.5 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -6355,14 +6414,6 @@ packages: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: true - /hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} - dependencies: - is-stream: 2.0.1 - type-fest: 0.8.1 - dev: true - /hasown@2.0.0: resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} engines: {node: '>= 0.4'} @@ -6931,25 +6982,6 @@ packages: engines: {node: '>=8'} dev: true - /istanbul-lib-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} - dependencies: - append-transform: 2.0.0 - dev: true - - /istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} - dependencies: - '@babel/core': 7.23.7 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} @@ -6976,18 +7008,6 @@ packages: - supports-color dev: true - /istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} - dependencies: - archy: 1.0.0 - cross-spawn: 7.0.3 - istanbul-lib-coverage: 3.2.2 - p-map: 3.0.0 - rimraf: 3.0.2 - uuid: 8.3.2 - dev: true - /istanbul-lib-report@3.0.1: resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} engines: {node: '>=10'} @@ -7765,6 +7785,11 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true + /json-parse-even-better-errors@3.0.2: + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: false + /json-schema-ref-parser@9.0.9: resolution: {integrity: sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==} engines: {node: '>=10'} @@ -7821,7 +7846,6 @@ packages: /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true /jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -8142,10 +8166,6 @@ packages: p-locate: 5.0.0 dev: true - /lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} - dev: true - /lodash.ismatch@4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} dev: true @@ -8526,6 +8546,7 @@ packages: resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 + dev: true /minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -8702,7 +8723,7 @@ packages: array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 - minimatch: 3.0.5 + minimatch: 3.1.2 /mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} @@ -8803,13 +8824,6 @@ packages: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} - dependencies: - process-on-spawn: 1.0.0 - dev: true - /node-releases@2.0.14: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} dev: true @@ -9007,8 +9021,8 @@ packages: '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 - axios: 1.6.5 - chalk: 4.1.0 + axios: 1.6.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 cliui: 8.0.1 @@ -9053,42 +9067,6 @@ packages: - debug dev: true - /nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} - hasBin: true - dependencies: - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - caching-transform: 4.0.0 - convert-source-map: 1.9.0 - decamelize: 1.2.0 - find-cache-dir: 3.3.2 - find-up: 4.1.0 - foreground-child: 2.0.0 - get-package-type: 0.1.0 - glob: 7.1.6 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-hook: 3.0.0 - istanbul-lib-instrument: 4.0.3 - istanbul-lib-processinfo: 2.0.3 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.6 - make-dir: 3.1.0 - node-preload: 0.2.1 - p-map: 3.0.0 - process-on-spawn: 1.0.0 - resolve-from: 5.0.0 - rimraf: 3.0.2 - signal-exit: 3.0.7 - spawn-wrap: 2.0.0 - test-exclude: 6.0.0 - yargs: 15.4.1 - transitivePeerDependencies: - - supports-color - dev: true - /oauth-sign@0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} dev: true @@ -9261,13 +9239,6 @@ packages: engines: {node: '>=6'} dev: true - /p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} - dependencies: - aggregate-error: 3.1.0 - dev: true - /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} @@ -9317,16 +9288,6 @@ packages: p-reduce: 2.1.0 dev: true - /package-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} - dependencies: - graceful-fs: 4.2.11 - hasha: 5.2.2 - lodash.flattendeep: 4.4.0 - release-zalgo: 1.0.0 - dev: true - /pacote@15.2.0: resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -9574,13 +9535,6 @@ packages: /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - /process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} - dependencies: - fromentries: 1.3.2 - dev: true - /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} @@ -9835,13 +9789,6 @@ packages: engines: {node: '>=8'} dev: true - /release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} - dependencies: - es6-error: 4.1.1 - dev: true - /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} dev: false @@ -10092,6 +10039,7 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 + dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} @@ -10099,7 +10047,6 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 - dev: true /serialize-javascript@6.0.2: resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} @@ -10343,18 +10290,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} - dependencies: - foreground-child: 2.0.0 - is-windows: 1.0.2 - make-dir: 3.1.0 - rimraf: 3.0.2 - signal-exit: 3.0.7 - which: 2.0.2 - dev: true - /spawndamnit@2.0.0: resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} dependencies: @@ -10652,6 +10587,10 @@ packages: engines: {node: '>=8'} dev: true + /strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + dev: false + /strong-log-transformer@2.1.0: resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} engines: {node: '>=4'} @@ -11148,12 +11087,6 @@ packages: underscore: 1.8.3 dev: true - /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - dependencies: - is-typedarray: 1.0.0 - dev: true - /typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true @@ -11428,6 +11361,10 @@ packages: resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} dev: false + /vscode-languageserver-textdocument@1.0.7: + resolution: {integrity: sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==} + dev: false + /vscode-languageserver-types@3.17.2: resolution: {integrity: sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==} @@ -11703,15 +11640,6 @@ packages: signal-exit: 3.0.7 dev: true - /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - dependencies: - imurmurhash: 0.1.4 - is-typedarray: 1.0.0 - signal-exit: 3.0.7 - typedarray-to-buffer: 3.1.5 - dev: true - /write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} diff --git a/test-packages/test-utils/package.json b/test-packages/test-utils/package.json index 0a4a1097c..d49c7a19a 100644 --- a/test-packages/test-utils/package.json +++ b/test-packages/test-utils/package.json @@ -16,7 +16,7 @@ "https-proxy-agent": "5.0.1", "node-fetch": "2.6.9", "proxy-from-env": "1.1.0", - "@ui5-language-assistant/constant": "0.0.1", + "@ui5-language-assistant/constant": "workspace:*", "@ui5-language-assistant/semantic-model-types": "4.0.11" }, "devDependencies": { From 0a593543e02bc47bb45e5a2a6b0e3eb80c7bd195 Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Thu, 10 Oct 2024 08:40:58 +0200 Subject: [PATCH 3/9] fix: compile projects --- .github/dependabot.yml | 2 +- .github/workflows/deploy_maual.yaml | 8 +- .github/workflows/pipeline.yml | 32 + .github/workflows/release.yaml | 20 +- .gitignore | 3 + .mocharc.js | 12 - .../terminalOutputs/10328912034190447961 | 8 + .../terminalOutputs/11621152958808016094 | 8 + .../terminalOutputs/12099342359257843863 | 8 + .../terminalOutputs/14982787946498001416 | 8 + .../terminalOutputs/15725619364609846067 | 8 + .../terminalOutputs/16123343201382305479 | 8 + .../terminalOutputs/16315027627130776699 | 8 + .../terminalOutputs/17883363138592692128 | 8 + .nx/cache/terminalOutputs/2972496566099623290 | 8 + .nx/cache/terminalOutputs/3012064955541176717 | 10 + .nx/cache/terminalOutputs/3221225642769452975 | 8 + .nx/cache/terminalOutputs/3688954031168157299 | 8 + .nx/cache/terminalOutputs/4915091885760385124 | 9 + .nx/cache/terminalOutputs/5674665678479752944 | 8 + .nx/cache/terminalOutputs/5921150563841538939 | 8 + .nx/cache/terminalOutputs/7458892461117669299 | 8 + .nx/cache/terminalOutputs/8153432678899646769 | 8 + .nx/cache/terminalOutputs/9063001969434201139 | 8 + .../10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db | Bin 0 -> 4096 bytes ...0D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm | Bin 0 -> 32768 bytes ...0D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal | Bin 0 -> 2978792 bytes .nx/workspace-data/file-map.json | 4303 ++ .nx/workspace-data/lockfile.hash | 1 + .nx/workspace-data/nx_files.nxt | Bin 0 -> 105780 bytes .nx/workspace-data/parsed-lock-file.json | 30434 +++++++++++++ .nx/workspace-data/project-graph.json | 35992 ++++++++++++++++ del.txt | 816 + nx.json_noused | 68 + package.json | 39 +- packages/binding-parser/package.json | 9 +- packages/binding-parser/tsconfig.json | 31 +- packages/binding/package.json | 19 +- packages/constant/package.json | 2 +- packages/constant/tsconfig.json | 2 +- packages/context/package.json | 21 +- packages/context/src/utils/ids-collector.ts | 3 +- packages/fe/package.json | 14 +- packages/language-server/package.json | 27 +- packages/language-server/src/quick-fix.ts | 6 +- packages/language-server/tsconfig.json | 6 + packages/logger/package.json | 2 +- packages/logic-utils/package.json | 2 +- packages/semantic-model-types/package.json | 2 +- packages/semantic-model/package.json | 5 +- packages/semantic-model/tsconfig.json | 3 + packages/settings/package.json | 9 +- packages/user-facing-text/package.json | 4 +- .../package.json | 6 +- .../package.json | 34 +- .../tsconfig.json | 5 +- packages/xml-views-completion/package.json | 10 +- packages/xml-views-definition/package.json | 8 +- packages/xml-views-definition/tsconfig.json | 2 +- packages/xml-views-quick-fix/package.json | 4 +- packages/xml-views-tooltip/package.json | 7 +- packages/xml-views-validation/package.json | 14 +- pnpm-lock.yaml | 3941 +- test-packages/framework/package.json | 11 +- .../projects/ts-free-style/package.json | 2 +- test-packages/test-utils/package.json | 16 +- test-packages/test-utils/tsconfig.json | 10 +- tsconfig.json | 25 +- 68 files changed, 74534 insertions(+), 1605 deletions(-) create mode 100644 .github/workflows/pipeline.yml delete mode 100644 .mocharc.js create mode 100644 .nx/cache/terminalOutputs/10328912034190447961 create mode 100644 .nx/cache/terminalOutputs/11621152958808016094 create mode 100644 .nx/cache/terminalOutputs/12099342359257843863 create mode 100644 .nx/cache/terminalOutputs/14982787946498001416 create mode 100644 .nx/cache/terminalOutputs/15725619364609846067 create mode 100644 .nx/cache/terminalOutputs/16123343201382305479 create mode 100644 .nx/cache/terminalOutputs/16315027627130776699 create mode 100644 .nx/cache/terminalOutputs/17883363138592692128 create mode 100644 .nx/cache/terminalOutputs/2972496566099623290 create mode 100644 .nx/cache/terminalOutputs/3012064955541176717 create mode 100644 .nx/cache/terminalOutputs/3221225642769452975 create mode 100644 .nx/cache/terminalOutputs/3688954031168157299 create mode 100644 .nx/cache/terminalOutputs/4915091885760385124 create mode 100644 .nx/cache/terminalOutputs/5674665678479752944 create mode 100644 .nx/cache/terminalOutputs/5921150563841538939 create mode 100644 .nx/cache/terminalOutputs/7458892461117669299 create mode 100644 .nx/cache/terminalOutputs/8153432678899646769 create mode 100644 .nx/cache/terminalOutputs/9063001969434201139 create mode 100644 .nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db create mode 100644 .nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm create mode 100644 .nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal create mode 100644 .nx/workspace-data/file-map.json create mode 100644 .nx/workspace-data/lockfile.hash create mode 100644 .nx/workspace-data/nx_files.nxt create mode 100644 .nx/workspace-data/parsed-lock-file.json create mode 100644 .nx/workspace-data/project-graph.json create mode 100644 del.txt create mode 100644 nx.json_noused diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 38d01d033..239a10657 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: -- package-ecosystem: npm +- package-ecosystem: pnpm directory: "/" schedule: interval: monthly diff --git a/.github/workflows/deploy_maual.yaml b/.github/workflows/deploy_maual.yaml index 839e9d0e6..141972dfc 100644 --- a/.github/workflows/deploy_maual.yaml +++ b/.github/workflows/deploy_maual.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] + node-version: [18.x, 20.x] runs-on: ${{ matrix.os }} @@ -19,9 +19,7 @@ jobs: uses: actions/checkout@v3 - name: Run install - uses: borales/actions-yarn@v4 - with: - cmd: install # will run `yarn install` command + run: pnpm install - name: Download latest released artifact uses: robinraju/release-downloader@v1.7 @@ -44,7 +42,7 @@ jobs: run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc - # To help debug when lerna detects changes to the working tree and fails the publish + # To help debug when pnpm detects changes to the working tree and fails the publish - name: Status run: git status diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml new file mode 100644 index 000000000..459665e63 --- /dev/null +++ b/.github/workflows/pipeline.yml @@ -0,0 +1,32 @@ +name: CI/CD Pipeline + +on: + push: + branches: [master] + pull_request: + branches: [master] + +env: + GHR_PROJECT_REPONAME: ui5-language-assistant + GHR_PROJECT_USERNAME: SAP + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + node-version: [18.x, 20.x] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'pnpm' + - name: Install dependencies + run: pnpm install \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b455b2970..f4217d80c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,21 +15,17 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14.x, 16.x, 18.x] + node-version: [18.x, 20.x] runs-on: ${{ matrix.os }} steps: - name: Checkout code repository uses: actions/checkout@v3 with: fetch-depth: 0 # will fetch all history - - name: Run install - uses: borales/actions-yarn@v4 - with: - cmd: install # will run `yarn install` command + - name: Install pnpm modules + run: pnpm install - name: Run build - uses: borales/actions-yarn@v4 - with: - cmd: ci # will run `yarn run ci` command + run: pnpm ci - name: Run SonarCloud scan if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' @@ -62,7 +58,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] + node-version: [18.x, 20.x] runs-on: ${{ matrix.os }} needs: [build, compliance] outputs: @@ -75,10 +71,8 @@ jobs: fetch-depth: 0 token: ${{ secrets.ACCESS_PAT }} # needed to auto trigger release job - - name: Run install - uses: borales/actions-yarn@v4 - with: - cmd: install # will run `yarn install` command + - name: Install pnpm modules + run: pnpm install - name: Apply changesets id: changesetVersion diff --git a/.gitignore b/.gitignore index 0c48cd778..12ea473d4 100644 --- a/.gitignore +++ b/.gitignore @@ -101,3 +101,6 @@ test-packages/test-utils/.model-cache # Test reports junit-report.xml test-report.xml + +# Ignore nx +.nx \ No newline at end of file diff --git a/.mocharc.js b/.mocharc.js deleted file mode 100644 index 7c4b9e85c..000000000 --- a/.mocharc.js +++ /dev/null @@ -1,12 +0,0 @@ -const chai = require("chai"); -const deepEqualInAnyOrder = require("deep-equal-in-any-order"); -const sinonChai = require("sinon-chai"); -chai.use(deepEqualInAnyOrder); -chai.use(sinonChai); - -module.exports = { - require: ["source-map-support/register"], - spec: "./lib/test/**/*spec.js", - // we have many async tests which depend on lazily generating the model - timeout: 10000, -}; diff --git a/.nx/cache/terminalOutputs/10328912034190447961 b/.nx/cache/terminalOutputs/10328912034190447961 new file mode 100644 index 000000000..0c84509ad --- /dev/null +++ b/.nx/cache/terminalOutputs/10328912034190447961 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/settings@4.0.9 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/settings@4.0.9 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/11621152958808016094 b/.nx/cache/terminalOutputs/11621152958808016094 new file mode 100644 index 000000000..35c007283 --- /dev/null +++ b/.nx/cache/terminalOutputs/11621152958808016094 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/binding-parser@1.0.7 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/binding-parser@1.0.7 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser +> rimraf ./lib ./coverage + diff --git a/.nx/cache/terminalOutputs/12099342359257843863 b/.nx/cache/terminalOutputs/12099342359257843863 new file mode 100644 index 000000000..a0bf331cb --- /dev/null +++ b/.nx/cache/terminalOutputs/12099342359257843863 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/test-utils@4.0.16 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/test-utils@4.0.16 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils +> rimraf ./lib ./coverage ./nyc_output ./.model-cache + diff --git a/.nx/cache/terminalOutputs/14982787946498001416 b/.nx/cache/terminalOutputs/14982787946498001416 new file mode 100644 index 000000000..fb9b07520 --- /dev/null +++ b/.nx/cache/terminalOutputs/14982787946498001416 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/context@4.0.29 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/context@4.0.29 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context +> rimraf ./lib ./coverage + diff --git a/.nx/cache/terminalOutputs/15725619364609846067 b/.nx/cache/terminalOutputs/15725619364609846067 new file mode 100644 index 000000000..6fc24dd01 --- /dev/null +++ b/.nx/cache/terminalOutputs/15725619364609846067 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/constant@0.0.1 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/constant@0.0.1 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/16123343201382305479 b/.nx/cache/terminalOutputs/16123343201382305479 new file mode 100644 index 000000000..891297d31 --- /dev/null +++ b/.nx/cache/terminalOutputs/16123343201382305479 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/language-server@4.0.56 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/language-server@4.0.56 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server +> rimraf ./dist ./lib ./coverage + diff --git a/.nx/cache/terminalOutputs/16315027627130776699 b/.nx/cache/terminalOutputs/16315027627130776699 new file mode 100644 index 000000000..9efbc93e5 --- /dev/null +++ b/.nx/cache/terminalOutputs/16315027627130776699 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/semantic-model@4.0.18 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/semantic-model@4.0.18 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model +> rimraf ./lib ./coverage + diff --git a/.nx/cache/terminalOutputs/17883363138592692128 b/.nx/cache/terminalOutputs/17883363138592692128 new file mode 100644 index 000000000..234b13239 --- /dev/null +++ b/.nx/cache/terminalOutputs/17883363138592692128 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/xml-views-quick-fix@4.0.21 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-quick-fix +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/xml-views-quick-fix@4.0.21 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-quick-fix +> rimraf ./lib ./coverage + diff --git a/.nx/cache/terminalOutputs/2972496566099623290 b/.nx/cache/terminalOutputs/2972496566099623290 new file mode 100644 index 000000000..548c49451 --- /dev/null +++ b/.nx/cache/terminalOutputs/2972496566099623290 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/test-framework@4.0.12 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/test-framework@4.0.12 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework +> rimraf ./lib ./coverage ./.model-cache *.tsbuildinfo + diff --git a/.nx/cache/terminalOutputs/3012064955541176717 b/.nx/cache/terminalOutputs/3012064955541176717 new file mode 100644 index 000000000..f89a42e86 --- /dev/null +++ b/.nx/cache/terminalOutputs/3012064955541176717 @@ -0,0 +1,10 @@ + +> vscode-ui5-language-assistant@4.0.73 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant +> pnpm run clean && tsc -p . + + +> vscode-ui5-language-assistant@4.0.73 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant +> rimraf ./dist ./lib ./coverage *.vsix NOTICE LICENSE + +src/utils/binding-semantic-token-creator.ts(14,36): error TS2307: Cannot find module '@ui5-language-assistant/binding' or its corresponding type declarations. + ELIFECYCLE  Command failed with exit code 2. diff --git a/.nx/cache/terminalOutputs/3221225642769452975 b/.nx/cache/terminalOutputs/3221225642769452975 new file mode 100644 index 000000000..9fea808e1 --- /dev/null +++ b/.nx/cache/terminalOutputs/3221225642769452975 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/xml-views-definition@0.0.7 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-definition +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/xml-views-definition@0.0.7 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-definition +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/3688954031168157299 b/.nx/cache/terminalOutputs/3688954031168157299 new file mode 100644 index 000000000..e4f48cabf --- /dev/null +++ b/.nx/cache/terminalOutputs/3688954031168157299 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/xml-views-validation@4.0.23 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/xml-views-validation@4.0.23 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/4915091885760385124 b/.nx/cache/terminalOutputs/4915091885760385124 new file mode 100644 index 000000000..9f40372b3 --- /dev/null +++ b/.nx/cache/terminalOutputs/4915091885760385124 @@ -0,0 +1,9 @@ + +> @ui5-language-assistant/semantic-model-types@4.0.11 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/semantic-model-types@4.0.11 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types +> echo "nothing to clean" + +nothing to clean diff --git a/.nx/cache/terminalOutputs/5674665678479752944 b/.nx/cache/terminalOutputs/5674665678479752944 new file mode 100644 index 000000000..6fc717a49 --- /dev/null +++ b/.nx/cache/terminalOutputs/5674665678479752944 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/logger@0.0.1 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/logger@0.0.1 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/5921150563841538939 b/.nx/cache/terminalOutputs/5921150563841538939 new file mode 100644 index 000000000..f4bd79140 --- /dev/null +++ b/.nx/cache/terminalOutputs/5921150563841538939 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/user-facing-text@4.0.9 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/user-facing-text@4.0.9 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/7458892461117669299 b/.nx/cache/terminalOutputs/7458892461117669299 new file mode 100644 index 000000000..fd7e53a14 --- /dev/null +++ b/.nx/cache/terminalOutputs/7458892461117669299 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/fe@4.0.33 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/fe@4.0.33 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe +> rimraf ./lib ./coverage + diff --git a/.nx/cache/terminalOutputs/8153432678899646769 b/.nx/cache/terminalOutputs/8153432678899646769 new file mode 100644 index 000000000..f68b8a8dc --- /dev/null +++ b/.nx/cache/terminalOutputs/8153432678899646769 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/xml-views-tooltip@4.0.29 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-tooltip +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/xml-views-tooltip@4.0.29 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-tooltip +> rimraf ./lib ./coverage ./nyc_output + diff --git a/.nx/cache/terminalOutputs/9063001969434201139 b/.nx/cache/terminalOutputs/9063001969434201139 new file mode 100644 index 000000000..6ea198850 --- /dev/null +++ b/.nx/cache/terminalOutputs/9063001969434201139 @@ -0,0 +1,8 @@ + +> @ui5-language-assistant/binding@1.0.34 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding +> pnpm run clean && tsc -p . + + +> @ui5-language-assistant/binding@1.0.34 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding +> rimraf ./lib ./coverage + diff --git a/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db b/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db new file mode 100644 index 0000000000000000000000000000000000000000..7ee7c113a09428e4daafacb6e70a35d18573e608 GIT binary patch literal 4096 zcmWFz^vNtqRY=P(%1ta$FlG>7U}9o$P*7lCU|@t|AVoG{WYDWB;00+HAlr;ljiVtj n8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71*Aut*O6ovo*4{!$i literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm b/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm new file mode 100644 index 0000000000000000000000000000000000000000..750988cea151c2733ed78956f2ddf36acd2f7801 GIT binary patch literal 32768 zcmeI)Wo#Bp6b9h;eSsEtDeg{jx8m+vytum+cXx_QaV^E&ogxK_ySux~{l46g@ZgXTy0K>Zj6K7us=z2?phlzW?d{wSNA$ z`DC8v`6s`hEI%zjEkFPLI>P4BKhL9|*Jv(|b((YS=*+iYDSz1h>V5zB^}(f|4t@(0 zFaZ-V0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V z0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V0TT$u0)z|NJAdo5Fo6&!Ajj@1Sx^TYNSPaxFZv?AqR3H5AvY^JWv=# zQ5+>v8f8%)6;T;gQ5`i=3-! zi}SdQtGJGvxQ)BGkB4}Sr+AK+c#XGskB|6_ulNo!3|$$H5g3V47>zL)i*Xp2@tKf` znUu+ylBt=N>6wXHn2kA@i+Pxj1?a)TEXv|6$c?8@%!!CvgcejLOh9L5nG#W5Vm3H0G)PUUpY0#yvf_V%lmxD$9&4?e96~*%lG`q z&-_X%l)}hW;S@oU6h+Y#L$MS`aTQ+)l~_rYTq%`W>E*6W%A#z_pN9{p6HFf=#POIjNurG(HM*In21T3f@zq6S@6YN%*R43#!@WD3arFh ztj9)d##U^{PVB~B?8iX_;0TW4I8Nde&fpv_;0mtc25#XF?%@F*;R&AM1zzC|-r)m2 z;S0VwHrEqf7?$A~k&zjd(HWDm>Be|Wz(h>KWK6+SOv7}{z|73b?99pB%**^N$U-c_ zVl2T@EW>iFz)GybYOKN9tjqfJVk0(TGqzwWwqZMVU?+BAH+r)td$TY5b1;W;I7f0c z$8tO;auTO-8fS18eL0u&xsZ#wl*_r2tGSlzxsjW>mD{BA!f%v9%SB-oUJ(^pQ59V=6MnAHAz!6O*1r0zM8A~TByZZsufzP)mp3d z+NjOis_ojT-P)`DI;a30(J>v@NuByFGpo~YX*I-sLT$joQlPWCs=Ioqm-?um25E?f zX@o{;jK*n#d^A~8HC;0`TXQr|3$#c}v`qe5r8Qco4ceqF+NK@ar9IlG13IL`I;udO zP>`Ivr&^eR37CKhn1BhGfC-p@37CKhn1BhGfC-p@37CKhn1BhGfC-p@37CKhn1BhG XfC-p@37CKhn1BhGfC-qu?-Te7zUhx2 literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal b/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal new file mode 100644 index 0000000000000000000000000000000000000000..a53ea122f88f40300aac1be1d4c3b11234409e2c GIT binary patch literal 2978792 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%0AB#U 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

-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 z zA_}ZX)_My56w=6AwmS06mFa<2@&c*bzb3iD6Ib^*2$2s%+{qd^{mS0T=8yHZ_*3Ks z8nNDuwutgr-yY2LH(b;!lgLxoVU>cDk2N~cl{DH{fj0R;>Es18at~~MoS!>g-gNli zGg0lor94>O*HC=_x)%4k&CP*R@nd=RN1NgWzW2k=?|kZC-}N%{1s2L5IDZZ*Kn17(6*%D) zV7`DI&CKAr-Kajv+ZyV&fbs>_rBkM@nPBc^=?|Y#5awQ*K7%<8wAw`&?nR5B2~Zs- z+)M0>F<(F<-Wx@KA(|D@;elb_*gZGZEEdcc2vIqQfeGQqA&`FUzTU1GtzyG`0U;4R zfs_U23t&kobl^l0{)yO9q~wQ2O6R5eImyH*tk6b6DCP^u2u%XcQ>ijXJ73^YwQlk2 z7yYz9Ctu*xrJG8{&aZZkb}lP^zj$YHYtb!ysW4W!q~qC+Pj&Qn^tM0IesAe#C;Sx{ z1)u^{fC^9nDnJE}kOIsXNLJPdT5)TNVPGHiZn5&i7|qqWDfM#(TA43UTRwZ@x-q1_ zG0~p72}9~ZtWZ*kI~IvVFVuG`k*h891p?_K79d}tW+*^ybac2@9c!q)H3>b@-{WXB zqGE>ycRVB~`j9xuEj}X7K`-u6XLSzgYFn3&;x`p^F*5EES*vRDcRlfupTJ>NI48 z^s$d%0r3J?T30qBIm{(5V3k34xA9>^3b>N7j6)=MyXV!-$p}5@@coeth@BOMrg-7@ z+E1~i-{@Y$J(u=1degB};4ZBnOXLM?g1&DwFaRiHgmF(#l?nV%kQeYxC?hNzA#~^# z>{^2Dt$jZtFMtevB;~(sH6bq$gaT!`p^tij5DkUcgmj*^%Aiod{yuiekO&(cOJ3m8 zb1r}SZQordb9jM6q6JEyKH3*N{CZS?3Qz$mKn1A4iJ|~`0rCQad-`@)ZXMlo%e2iO zH*9_szWFFtz^y;-T$L|muFX$gKqGzLk8?}bC(y1?9_;I{jtrG+m3_5_)|(UIiJi7- zA;QgWjNJijtB@BMsV#3h`~#K2>PU5#!@oRr_!XKfO%%j3MCv~*ejUbnu5|O&GI)V2 z$qO`!RW9+=Hp}<4PCexbi)NJ>%XxKju_y2fstMAN%av$qSq) zS6BQwsQ?wA0#snZD?nag;p7Xfw|-IvKJ1bguz$!>m`JDqf5lRU*c6DA`z9+Hc>xVy zACv?JB4nTu7$Mv@q$dV={y-#RWJm;oj~oeOw7Vo-Wg55q;Q9@cCA5eXUcf!0elC%U zynqqffSCxQP{n~;OofTUPzy}NlNX3|pq=~EWh51BZvYgaa&$yq0Dz72llp3z|GdB# z|K*I0FP!zG_vi2ehmb8$LI%Ntzrx}VNCl_>6`%rCfC?NV1;`7K7a%W?i$P3x*Te1K zTiG*h@=H(MY<*RvCWJ7okxhY{d-4Lq<-OI)t>fjreZ$p(zF7{xpL+69?Aw${F{Up0_({OOh+dSRvOE4b#kevwqRLi#GmG=JUluyG`+6ZB;*BBaAJLO zfv0vrNuG9b=_n1*#Z-ju_94v~riFf5_wo0QLug zFes1kV~i*p_smon3@?)xKpTLFg&+EG^|f@n>_KMGCxP=KauRS(34v3{$Su{^Qe=n)jh-aXY&FFZz8a?K&g1RFKGCBRDcRl0V+TRr~nnHD?na= zya0KDd=s#5WN4yqs8S{`V30C_$Ve?^o@3f{_%nEctH=xNg^@f^DNj^Yd74A%o3i~I z9M&Emoya2Dhr~nn90#twsED#0ih9P-@`Ns=v zNbSc~P}wCf09*pY@P4G>)%rH7&1m2v=cj9#yg&q-8-P11>I4WJq204mVQg>!c>!S% zn1GmfJIx;XZnr(iPyrvt6j1YY1jJU09% zfBlDD@5tc=Mmv`kzhAtwxV7jOzEl`1T+;Du$EP~_J9^unXur4gvpOx%`PBt-9mOAm z3Qz$mKn17(6_|GlkQX2?Kwf~nzGouUrz)7R#;q>`6hh2clNXrs z_Lt9Y-ze8^8>>vY)hm;Ap4immWVD=;7s%iwmcOeyG61)~vF_F;7uC)FAc*1cW30}g z+W;Gy%H#qQ1zk8m%z`VN*;x|MEr~nn90#xADDL`J}*!B@@O#c8f z?p9p#0*kV8vfK+&Ym&Tx1e$H^_&eN4R4e#yj}=A)hP(hmQKW=HD`Nu^Dt1pv4>E*J zgfV%65W6Bia$5Yr_0koi6~bjg0Y96(K%|}LttcVx;zJc7ND}2G5z=?U*!gMtgwdfy z3kP~QjX@AjXng0nba_PrtVD<`90b+)+VUu7VeC0rCP1gcsQ8iT)l3u)2@jbQ#%RM0>mDo4m2=W+DK2 z0VkudG*3730@LUOCi82ReN%(^tCNd8v8~5}$B*E|0NW{;L6LUaBG>Idad?5xZvMTY z-~Xj#BYA;?U6t^8DnJFO02QDD$B6>u1&#_Yu*rH&8Fx4?c>z!X@G0j6YPlDt3p1lv zi@bncuznPh7f9C(+5ik1OO$a>t=qO*A$)?o04M-~W|=^`C#Slg@&(cN3bX)ufhcfZ zsK4w zesIG=y0t%))>v+nvfTW4=$QjYq(OYj*c{R+m>9Jb|sJ( zSd(1hDY*Rz{X=JN7)h*3iNwSRMV)!Vk{76^O$N({M~ABY<%wE#cq(cF7XzNXAeh=0 zxO@5U{OW)0{r< zg#L-#gbBFZL(}V;yg=gsU!PpysU1);wuRLF1ODbB%O_WPsAS0p6y|}JdYf~3_fpe@o7hsN;yg-PI0E^CyrVz}V2Go?V}d+5HdE*W_Ng(SQP#dqWd_S+?a#Up&*)^Py5LH9%; z40(YktumG;G0K)u1PJcL0fnZ7C(oC|)}mYZQemucNyoDt zpX%uE=xu+Z{oc~gN}n#>R4R6UwN48Z@0=&sLHstT02QDDRDcRlfd!`kc>(eQCk!vJ z#ZzyG38>MShKf0~qK7KP<$oNI7hoR&`v@xJ1&$~$ux{7SKHTF4jx;ROzf7AS5#Q7^psb5j8-Kn17( z6`%q~S^@F`>A zaewBL7sv|yaxYB<%V_>0FHk?0G~&Gx+!vytFZLD8yVxZ!VExR%4@HOwIc$IkKMn(5 zY4`Qk7bh>EeGJD-@&b19{bjo(P^ciI2>*;xAArV1)O0v6rN@^vF#;&i+X1kGynu|* zB;Y)iDs!}Xf%31fc<`fN`|{pwUf@u&1&YWZI7-(!{4!L43Qz$mKn1A438w&g0rCPz zkQdnIsheQ)Be5UJ{kUV1Nc2)hDUmzT|E}uDfX(b5>)V3_|Av2eWkOyc!{o1xjt#^3Qgo#sKD2uHhb|g1C{bb zX8%It578u-d176UBVrvXVD2_r632{>X1u&_X0X!u+||jYo?;)t+T=n{U2V$*e4J=( zHD?IS2aEd;I#6QEFLRAj8U58yDRONi32n#WA@sFXj8Vs*TT40 z)L#r=Sn4PYkVK9LzP-p@k$z_qiPNxTeSC|)ihO*Bu1P<|j^p}x5nMmvKNWre-`!q+ zruBBtB`>fj^@fRmL8WrSrTP($bz>{^2DOA?cvNZ_p(y$a}O#Et+q zA)Tk|@0H5_K6c6QeiuC4li)fCIU+f6uz`jFRb`;Q2{DI1*iZO zpaREQ0rCRm1zLH5?G2m1b;l^raGUL*Hf*YHCC-p8)+(9_;J4EJUrcZ_1h6 zoNV&MPMe$%;bu3+?m&I-4rXVb)J>D0ya3|jB5Z_)aOGj~qoMKOqS>`MT&Yz@M;fb? zyucKe!#;u|$_xCjJGy^+!*@nLL0;fkU-j_oQvoVK1*iZOI7|xEJCCLlS z#)sW2tJ@sg*V0#0g zz)?nC00dHW9Pt7#d!PHlAARe;y_~}fT+;Du$EP~_J9^unXur4gv(l$aH&*}MjSQt3{&4&EPRAW=PBwe$W}BOU)PxX*HDVKSa}T~f&Yc1$FCZ#dnz3)EMlddA zq`+MrmTKP8Y+?}umBH#rb(X`wK1~ErXs#qLzN)fm|~gXo*Y!_YJ9J$Or%;5vKMXZ^ecI~)RPLtX&U63&mUD9GOkv4MhsP9@0;L^#%*XVT*f8Jb4mT%=5> zP`z+`@d6`vK6vYUOCPx*n-@4VTA*;r@p|FJ@0$ux0V+TRr~nn1?+TC?m>;~rHJ;jG zr_5VpBlG;!;n5)kqEFPS!&64thJ?I8-*jw$ibBkkXH&ApQ*VdJxD7SRM^3yBRj8yN z2f3y-c>!d)1BeKvG&a{A_wZ8Yt;nXszqfC=I?y-E;lC<%_{j^fk09l5n#XCQfTS_m zzc#t3UM7GJ6Ep}QhS!(?N2*pP7sVMrPI!U;_4n8Q@&5l*UQ1qJzF!sb`=bI>fC^9n zDsYGj%v)aI+VnfixUqD}3&4WQV2<7Osgp}yAVfj{2D??D5$7FgBQ8N0 zC4?Wt;WqA>^}}Bx9)P?61_6X0`bYuL((SUxlJU_%Dbclpn28Xsu9A^ks;{NUkQYGp z209Q`5K8BVRxY^SsGvbRjEE&rikQ5>v*}{Na1L|{QRjon9GsCB2rsbxl+`^KKKBPs z4li&B*#ZS*5FFxl3O|erPys4H1*iZOpaQQ@0rCQegBQ5g6DZ8iXphXZR$KbA$qO`c z`y2LQd8}^_X8Id0;+4r(PhDqu3Jme<0I7!3Xdn9+M&wqKlNYc#hcI2iUgs^tro;c9 ziE95X<-zK{hT_|k4W2?EKtNt#ni*+&+_T#^%C+0ZDpSzT%4D4! zyH};&Tx&)dd4a`hQJ`a3yW|C|FDZmEq0sJGb=MNX0ptaQL0|%E;cfbTv_tUy*<; zp^idq^!eJZFXJp|Uf{ux?z``!|L?!Pki!ccw28pd0v(^4uNOxAzNi2dpaN8Y3Q&RL zT>U_>X>zahTz-$M#VLES2ws{H#378eeutp@c zkrD2W5T_<`wIweQAm9-jf4K@ZP5#>G=y0t%)=+zEve6U$Jq}=XU&g@s$qO_c{-$VF zt>Mb7?1L-Q?1PK|(mc*$_G%|Du&>rwgR7H^J+ZCFK_&o#69Zp>?Fl7vCd1rxfD!y3XVA^=2J!*{ zb~AAQEzy`4;Pz4lxIc6+NO1{-=lh87!p?`Sb~D-p?)m8=BQFqPEFPQ*c>zQV8jw)2 zdrG=85H^ARG4cXPUBnG8A`@KC9!f$h?IRN(^Y1tfkr#O0iW1s^6&0a)66Ga80I;*_ z{4{;S=unynPa*9yI-z-izdC34mj_RO^DpP{0=?}|wBK9$S?SZIn@YvbuXc`hE-QY& zcxQ2I(Jg$bFjl7pI{JAfMg^z<6`%rCfC^B7Bcs4^&kJ1VDfm-C6a$41gBZPfsMRw8 za`f`dzPSb!d4WBByDPVj?zv^!=HK41`E6aAz_orH20nHaP*s>G>TCyf`h~~~j5l%< zCXkj;9_;H!(R#U7nKoEAC!0L6(=Oo1*BDzc+HUBO7pN_7I{X8b!RknLmcze3b@(%~ zMDx~X^VP@;RLV_`0<9)P(=i@vl1u7mQ#45iXaSH|l_=p1A_Q;d35%qZ8Oxcxz>Izv zykmRzUHkU(eUCl(i6?J->CYa2aogQVOkUu~T+8rPsQ?wA0#tws9CZZ_Cok}p^u;o6 zX=hi${Pq5|M=c z4=?}-l0#kqxCF+eP^BmZx+RnZwk1R7aa^0U*ZvWnCUv+b`*;6;$+yvYXgb~sc zkW8UbmEh;ETk-+|^#&QSpn1|a9e(lxNQ=lH&>yT!5BFc{sV!KR*xayN8F2`13K@v7 z`*Ry9$P3i^MrzAj`e82c)D9?_vCo>fUZG^QzdUgOUf@^d^_zd~qrbkFyub-^am62# z3Qz$mKm``Q0(INumGlwpsDDc9t*=X7V6(MsGZ<=j6L|ro^#KLIOoTy-7oq`_(e6d* zS`xq|$O}YLNP#Fr8ApL|&$bH&_3-2cG`a!+ksv@5O#(sazAin+WB{AjGA3Zejl|ZQ zaZgPb6MRlPAwph2X`uyq0h`_;LY#ImLWE`HOT>jn0eJy?6bWzv=$nYJOB3M$3yoIJ zkL(kN#0y;ie{TQ9zkJ)r{v?MNID~A04rCB4{7WqUgj9eEPys4H1*pKWQQ$T50y{hb zg9g_NAH4@Me8Hc@=P}!EbILKeFeIr9@-#U2#3>nzALM>(9iflUk zd;5l~1AVg+0j^3D0mutf$`e&pp5{=dC;c0qzez6h#JV0wVCY4~0%eB)sZfnVUclrc zWOM3a)+QI$8)h=LPxF@UQQ-w1{>ZX#Z+ojLk{38O*E;;FRDcRl0V+TR4!Z)myukIT zVcB|z?2;GQl8TlAUAyE3G8(z+eQNya4=eZ2ce?-)&EI(K5g$5SsI_@n%ASJ8kW@*`)-sLIpca33Uo2br6ek+fg1-tfZ8~BD1CaMbyY%M0B--9_BYxh%42kj!rXZ+!NQj{%`Ks*S_cMbMDSPQ_emo6XBYt zQvQ@uMXRbPszr;MKT4@8HP%c^Ra9!$Aph_0UGMO$wfA0UotyL~>#Y4g``zz)hv$9f z_gP0A;r<=E9=B`w$L-LOT))MKqYUhZ{xk4Hsz?1pHv)DOuA6cl&2ti+xOdEVGkorH&3TyW>L0~J_cyQy@cDth ztnW_ZkM0lRPpH4!e^yz~(il$#b{g09`Fy(n{$Zxx9zOHW%|&QOjwTg7xVcN|J`NW5Bbl}@OM2=;AisZ*#`Dp zKEIIb54c|D;eY7w`pwJz=T~s&pBt0CznX&Ty~f}5`L+JD=IhT5{Ehzeo4LQme|{@> z{t3qp>8{_ujSss2HTQRMz0a35M}oiKmp{N=zxycnk8$zOwWB)!Na5pLpWyl=mtX-u zDY|w9`z!^u@kQ?ZJEZGN{Ly#%Z0}zMAlTRZUEhU&g6mRQ&rzHD{B3~W;nL^talg`k z4t)_^|9;@%Kja>MdljGgcj$lkqx!mj%;)SE+25a1{$DQs9lDx7g8s_i_4(KOhVS(G zH+(pX&zi^U@sK0A>$~65XRaG?soo9!{YKpN{W0A2>|1fa4cG0sR8Rl(z3#UMc1Nze zaNX5^AHLK5SOeqZA;Ip>hvT{K!F5lrdvU2PJ?ljOd5XL0*10$QXVuZarmxfCKFjqW zU(UYG{_X;%-=FNi+s*xS4-575{TaYCFZ#?!Hzs|rvhITE3g173!b7?Ao&E`aR-r8T z*#>qlpZ9R_|DnAe9@-O3_3gh$0erNt_c(vw=kKAOey>aA1-=WPHHQZ%AN2K?xvz3v z#HBi09j4-Yw{y87;w{CPE(p8Y4>U(2OBZ{jZe)o1%pzk4&^y~WoH?WoRQ z0sCtYe+PH{UhV!JpWnsx_gwGe`T$pGQ@_{sAz-=-&c{O^=FdO)dMf`Tf7I5;J?vB5 z|Ap(*T>t7}q0KOlp9LQ1n7#|`hkBp$zY|>7zft~*hjDX#`Km96--P?u3-C}MUhIB% zWA5Js7~tPB^#e?O`!)qV`#-tg-2Yb35bR3-oyPM+K8JCI?^Q>if6RA3;nHVrhknMN zU;1*WbG0pp&op>_t{ZUaw>Rc~GynM(+;8bW-fhP_=5E}>cecL$e0S>H!`DC2*XMSq=0B@$ozD$Z4!>^#6F#=Mi;uUt z-;YbTw<5I>@E(^iTbK0%iU`bcKi8-#-c1Q@EbS^$f0O zay^UdIb5pud)!~ZrM6zgJ@nxveEtJ2_4#G~`#$l(Yp99@f-S3<4^}8!6|2NkUxvt{+ zDVN~-_X|EB4d1`QwDn5=S@W;833b%YpYh%6xx!ffg3oX8_4WOm`TQ1Bek-5f#`Sit zcX+t)L3P!a_X5-XecUw{g6p5!59JT|->DxT-}Vt;jWddP2=`!!#0u)4mrIkkD|=IqSeY-4t&*_oSd z&d#>xxZ)G%*H(v{J$`#3&zhpNI9QsxaM6O7yovCFd{`TiL2WzXo-}5}`!r|I#qcPiUHyZ8cT)okrnVId@XB+V`^kuVuDTCUW zpWfOWEDxsz*;rey4Hkw|o5Sv0bGFl9Kutb%8#8n5nUUY731m7i9?bXop~ks6Y_?}R zbM8lBc`Z0b@L=;A^D zlA%UEU={hD8<8)rZ49UT%l#ErZ^%j?TwS|lwYJ$?s;%}``gC(fKH|cD1~vaTqq-+z`5D+af$-w%Keq_|xq+8@d{e@sk&D zV|roGTUuQkZVu*$(`JF@5A^2`)`kaJs7)>V5Zq}o0iDK7tKFDk(anmN_dV+%z1^DM z+}h|*_gB_8FH3U*Ha6#InNHVdnk?aLGfv8|zq!d6htubscJirbpEk9!psJl_V~+Y- z=_acZYZtnqP1J*!8ew%%&AS=km-H>t6-tHzV1JQ?D#*=BFn z8?7dI$=}W#18j8b@d@R~sop~h`l~~??S_zznL6m*2L0IlbKTiSL!E+ddP2Im!Tz~q zZQ~$#ymleP2kOyVpYE-%Pp|Y=LH&K38@-GB5S2^%`vn!H;YUl_iPL*G`u$;h?_mC5 ze{(n$z*B7IMu*-*Fxt(T=FD8D-EMWNZU95Q9R_=3?GNc#e_;~sZg%S3+1c6lY#j;! znQJr?MkL}gzqYata*DX5#bM+Z4;K1~!kojLO!tS+t@>-8p!;fd#0qo(vj_EF0U;uiTgpY#Exouv_qjztHrKkGlTL?8kn6+ z7{reT^R8h|jJgG)MIy01(P5e#dz8E}*J?Id^wu0wQLE8yH%&`nI@2ccqC!S|!d_uP zTJ?5^Z8isSuQxg~hR7y_^Q=d^dH1>J>^<+nr<}j{!RMR-#c$VP?_v#X*Y;ei(`_9t z^_k93*mD2U{>C<#80Rg|L=44o>>!WgQ3!3oTjtu0CLL$)I&%10*81{b zzPBkVC-OEsGlN_T_Je@4i3${^UEMb7Mz+ybx0VrMow^a^D&&$@9nK387S#tM)1Hc= zr8=5ZVTP-{_2GdvIB~%Anw7VL@XMF0Lnrynd=}sK#Ssj+J+9zZw%I%HRP7TqE={QYqhqu&R%motX}WT zb!WQWS#Vbkx7%qks;uvRxLdy$G_xukDfT<8;}A73${$YBblOO>E5R6PNxQ4nsyEDJ z7J8N#cG&QsmSh4@tKETAAn(P;jx2N#$f5dW^I0JWBD@4(Ec$9v2|&FYylpD4wJAiaDz0eOrl{kLh!q7MAz2rEEEt4 za&98A7!`jSu<&jNftNLgSalk35shJ6v3Iy}u@lC68*5vuD9;xT8_X(5Gt=s{!JBTq zU7tzRxEvqzBEu{*jb_!JL5^aT5Ly!YmA8{-CoIdb500aJ)i&1-_E&53Xrf*@sn_eM z>nJ-2L>=%74Y%^ZGeN)R38y2rO@zJ1%#uID zc!D{Rc1a1EL*;7KdHftCxshi7usg7d*oCwrF=(&=VUzWTEy~{O&R~{6QS6{*!$unm zYbdye`0kUGJ~g~}snG$&(3(Lr>SICR|G0YsT1WkpE!|*`b*M=Dv#my_Gig<%5)9C- zH~QTMnq>!j3zDwe3g!t`hEJPwaas0<)f)QDdVgc{vOrhiYfK=b9g7I(MtGl_oAi8s zo3y}kaTP%oV%n&~E?cv02G_(qm6j(U>v$8LXOwHp-ryAtVaxr+&D#DA^wa)kq#|?Z zkSLSTsyV42OiG&V(#=!b-y7DXvZi@$!w%stGRe$g&|*ucKHGUs+fJ6CRhfh~*J_Iw z$*$3Xq`{|}P$o77dwM4Ir+nPOx-%k2!t^lkVB~8xXIXZZ$XF5=`%b3GM5~qlW>0jO zejp__QOrOpR2QUegvP{&OD6{F)dV|M5(I{_WHCQrEXdBZH9F8hv&4z7r5~ZIIn#op z{v8-h6N<#jWhT|xB!)Algu2^FYeDGgt*)+ZI-MNj-^NlOxiXU-(34OvvBI|Im^l<* z)bqF@BfVT<6_=e>JH*5>m|D;r@=tmybBDE}%N{klMv=w{DGsb5ukpifXAVKO-kfdE zU^NzNNEH3r4sN}-c_0pLW~MD`G>R#+DOI{Ykr(E+?_`;NH)6=zDi)lK!?oGKNL?&d zvxPF;F(SlRV}aIPcGn>@EWH&j37?*sY0l|F$j1bm7TRvAwBnG~E!mL5C}np<@r0r> zr}U)LOf3Y0ntq)TmGE0BnV=|a5Bqx?3k#ZOT>SF=I7yaqWGEA5f;3OpBms1r5F_}J zs9yilp5(dVGzz^l7-J-J3>1MrQhy}PI$C@Sy@%gHf{g@}c2GewtYDKG!rr@Ws1FRf zg|gUb8>>tn<;_kLhmP|G`I|#c$Fx7wk-$)ISG6-_^Ja9O9SOwcYZBy1vj#~!2F+k( zGK{twSeMZe62&WTcEmK2H@}8up27HlgvN}*b5!UScAKzp#D12aZ?Rx!Qq&B-CkM8ZF8-`WTGep`jqT-(H|i{kHKrgoknB$w zDe+#!&XzKi$Z36bNB`T{vFC7IVLwFqWj1FLi7fUcZSHO4$HA)OHnqG$7R9(OG7f}H zyg)|Q?o1L{qi4W8%R39gmJlCk&R|$%$vSYnv{aM(8%SBsR!lQ6iS$qz29b*M6 zHYKhyXmnTIA2)HxmrOnM9{CEEJ5%perfB25KKZG-4!3GX26$u;`9 z(0C|OgNhDHFQuT8)!CTr3%mhHdOS1s&r`3w^~$h?KvVG0Na5?(qJP_MTv2ck9^)8V zugu120OfQso56B*J`l$-Jh0gR2?qV*Q-%X^&gju=%07m!*^sTk8Q;>jE$_Z#(zUf! zj1IAv7(-^^idfE3>N*X)L9v%s8p&(uWv=`nfoP{*BJYTk0P&O7;X_zZWH6tV^j=jD zz*mBsW%aUJCPR5Glo$k7u!#~cquN{@+Kna}`(8c~hFfI&rN}Mvmh8waP)^aVWh;;y z70PdBYsWab&|mCrEpKMqQu_*n2?P*L3r(dVzg)%91R-FoQ3<&lzK;)o4mnYsH@Z?a zE)}ISiPKPes4QxVJg0AqqJHRE7Jey4L^w%CiUYD_+5(r9wQnQ3xi3!Dxb(kZbTLOl|o_S zzJLILN~m~E40{k`G`>XBZLfr!nL);>!`?m=Y(-+p#5^EI;DYSTK+$K?YHcG>WUUek zu+f)mYN3XvJyaCZ{;k2XjVQoqk6DzUpte{Al43&q@@2~AA}2uwb^uAh%a3=57%gN_ zbgd*oRcSP?_Vg+;5Ahm1!Y(_(Nx}+-O`;Rl<_9@38v`+%U=D!_=N%3ZHpTX~&COwL zk;oN{z?UI{XdxBBHGT5>`jkGn_!XSkGALm3Mj2p^p<59-w^=`CR}pLy2xV$U~VR#2nzR2*Gy*>a=Gug?EWj zA!5(EgrJZ+aOICj7kR{GtIalem~|!@whXG^zm`&lavbMJPd)SGbIv&JtaBATfXWU9 zAn-y09;);l)F#%o&rCER=z!Yy7|^8VH(6PtU$8WrCv722)E0a5F1kjBX*H3}3vL!T zKd%o&I*dUPYoL?kiRe_sRALTk|AmmFL@ONeWEBwok;Mpu5P6(o z(T(SbU{)WOa!1_Y!``FU}2DB{;R zmL~4UY-U5y45A>2AXbN#frkm}ve|U0+iBE}2B$gABtowctn_90lG}wPQs+1iKrAG? z#>$vQgh@nb8}lk0sd5XBD1jV<>p)=&bB zVEAl63^H-aCZezl^#LPSdYPgdIWztNRBZ+2pub__1{abJ2Dwp4ax|}C48cx=8Qi(( zAn46&9gye-sz1XmXv5S+&ZBkVa1LWCRxAunEfJh9kyKL$wuT2W3o?koW^HA-1l>So z!XF2PRNMkoIw5cQOpJ&wd7FArpD>|eeTEdX!!ZcSTPvK%M|p2>K%z%@o)(EfZ8$!z zbwy@i8J=yoD{TiGo3YrRBB*)F2k<;hLENjXf(s>v=n#ER%Lqdl%pi1Wv35A(oW2;* z0ks`b8L0r=!X--ZQ6li=n`L4MLfo1Mh$vfDRGGwO-`lD6)g>r40twOD7)02ogh%Jd zcM{8o#GXPZ8_pibnsWkzx)4f3?{_#0IpI14s#MXO;+9KP5~K=eoznL8K*f%U?aU6W1)y+9=p#(8%B2+X9|J(#8t0ke-3C(Ghr& z??lF03ZO`m_GDTXcBnnz;3jgP=o!l`A&r1fgjaT+amiO1u)*h?k%7=g#qYI2 z3T$H7welow!hw`Ann;REbVtfqAWkqK3+ccm$C4q-5zA8$O3v`X=>$UX=@aS-t_|=# zVYt=dlWaruV{N#F0-v4R(~RkC4MT!~A$k>NImO`66+p_Qv*BQqk&nnRg^RQQ%;9*u+zAz>ar(of8U>+|9Ndtp z1d9ZcW!vbR6=x_!&|m{`vFve%m?DMIwXr`FpaxPJ5?-!uIP7HRIa=#Z%4T^InEi(_ z`TL?%Wgio=fCY6)jsOLVLl-%?B1;FchocDV7TmDp#UAIt_7en+2_;ye+$IvH@J|!U zoZtc}oSvINZBX=9AX#j47xc}6RS94U<;O+G9I(qxsB8gAv_uXKHliavE2>9G{MhCQ zHRK-VwP2?qG)ym+#j~W9~6=p0DMLuKH9D6b~rXj9o!2V}0QYGvo__MQsy3W6PzNK-I(POM)V$RlxGhc8*AHXIan9PIL}9M3*IBLgUyU^o|hUTew_?@CmGK>?oKHGr*Nd z)+qIjinlvN7>*KV8;OuDbZgqdXoT7Y?MtMheAK}jW#WCp7_r1Cs|9v_4#T6AagrqN z^-*dZ^wNEb9oe_CHh(aXX0{P?#0(+Hz+h!%oPQQ{UOTe=EgkS#JPCz zMuRA5LNdQ5Qd_S3rqL9#);T=HnCCJ#xdXpUD9VuHnZO(@q)_*SGI1V!#D+*`Hswwb zQL-`^FLqDxj01%unvheUbkvFJiXLO{!8g!ykh?HA#JMOR&CqB1@YQP<4@n||2Uv#z zFkC2Y5SY#ms!wGNVeraw!e#L?SQMd=qFN*kW2_h~D`DXnvD4CamZ`tAksS|OcWEm3 zy4-2bjEgLwHH5l`onsRVmTN{N^e6_-;*)@Ye=2)V>U zh%_?SU0+>asS!AFFv~Kg99?L^$OSSjW9%?pE2lj%cr;KPtf-I&rD{MG#@KFy4Fbin z0uS-K^bCSfClFRge-W1Av=s3z(Uxsww(*AqC+3+@jwt0SBchz6$C4Y-G` z!U?#%XD7PJkpzjA#4v`DSFwErDI|0+JVLuFll4iS#MbrM{M@NALf0e~vv1HE(#8zr zMn8>AW|ErW+-kOxRA_ep!gomtliaNsA zfUjGj?+IPZarK~@xGk^s#h9v-m~wGI8YT)whaavK#ZP2@m>V`V9SI_elSDMJi-o05 z2wgO+Wr#Il5->X9vVo`LHozB#-Z4?fo%{rAx+^!tgvrNWt)tPHrLaJN%B(=efsNQ- zyb{HUHw0c}3aAfR6gVa?^(W!=VH1E{48)P>j-|uMT+N};0NSGY}FO#%A9DdV!Er?YEkG8LZdxk7pWDD5$!<% zaH5Kcexs~>f*U0>^%&D8HlN|>ArNevio`*8Q04+ub{^YPJQXA=9YgLRX?&{3qAIz%^9W$-m z+%geLQ&Jz3o!^x*Nh8ND5#Qh`WQCJjqr}>s)Sq(EJk3GSC2N`DW>R8gQ;LS5?In#F zt&n(P^2WJp7R;?E`$q09|B;uZDVU5UmB4pKxPHX^hl*b*7Uq#&Ev;i7yvodz;C8}mFGIKkBZLMFR|o6sis#}j0fcfBu~K)5DZok_P?HZoHMGlabiyCSN)&fCq@r#AXnu$3vClk{Mz!oslCAi6T0Npmj8 zqaryB%-2{D0}p}qP0rw1z84Dn6n+BID^r@ttr8MW>~3|pbDBf5xQPn|RDrK5c$H%i z%Cic()DvkbA4Fh`71uQE9Vfhof{bGrB00YSzQS0Mc?t3yg9kAuu2D3ut(T-66Qcbl zN?J-cDN8mHCfEXW*ggqba!2kA$IG9d;bAUnDX?TkQFG2z=Q#1jAbpvL!b(&^%9x3* z!b62#j{VCSPoX<=6Qlh^GmPzeNYEu|b`^J|lO@Q0=J-vZGYRD;P@61_DNM&;b#X0- zfQTFDo@l;o2)w|kjAkEa*3})nb!J4l@y60D6S9r8gw**=)6g3Ej)~EiQ2}y;^oRO7 z20_PevP4Ux=lcS8G(Cm@#-ZvgfIB@#kRk`-B+5G>G(IZMd({_GxQSm}Uf)C5*8a6i zr<_L(rlNyM7=198>kvY#U6!kFG=1OH<%4zXm^%6GUS5K|T`r=IHOE83I3R{G3F{Kt zA_lp%rAM5M)hSvDaz|?BLKD!;l}Z3Z6UNp!fdRw3fRpgDC_rR;uUz5VkqkMy6*AQ# zoRi38D~t(f#Yk5;lN5f2+bj0nZ&?#$WrMhhe!*UkHmaMKYqSm$C?; zdcaO`GMI?u@`>_}5@UYUi9urZm95W3dm1-Xc~j$%DsTOdG8CcU&^wpJ8j~QZk}+Ca zq<1fKkZ%l63}ONTi-@F7DyL0S-l?KKT6kYh;I4$!vs{?NamC7eZw-8Dy^J`Lb7Nv1 z6wO2KB&3Zk$pPxPhb1D!wH>!9JQ2&N0nt8kIpCKf>R5(Y6VO&ZP-7)E(@cN#k^`M$ zz>i^qIm;W%Xdw$4yf|Y;5+cg5J7IM|J0$P{!+RR`4%^S{G*RZls3Gq>=4V2i2}@8? znEdW^rHr0RJn`mAox|ZrEFe5ie%H!=t0JCwBAB;VT!;3)3C}CCpS=E>=10eNkdQF{ z$+5_A&56&#)N6V?<8gTsrODyd!|Nl@f|Ny$0qu~mj&P22+OZ0ujhmy;)wEF@bBFz~U&AN%L$P5ahQ8LjBV9ViqIXD1Aw0}0K^D_)q! zk8vYaLt#X#rN*+HBspv!4)i?VcjP!ydfyyGC9CiFSH%xS_DKgdZjo%6uR z#J_~ z=rk^QQsP6XF6dkme6S7c-A9Ddgm)<(_LvI3>UAZqaW9`?$`G{Bk#HXqw4~!N@oDAz za2$pK%e`GTjtUbCO01+XVoNZp;`@w`IqX3NYzYxb6MgX7h=}nJdUPLx*fBcAr|*1_ zIU*QGh}ltbPwWKw`!SaC!i@Nku?$T+%Hw{&7HdeBU>E7k5U8fZ`_8}{oAUjg%-+m) z%EE9wJ5o9yg-|QA3N~lyfJ7V{mst5sjIccK->Sj|V&~&1B@6CUPfKs}iJMUe|CneZ zkTIetuk&@J64Fom=Ck-bR6(5IFjOTULz_S>j$;c8V>q~f(XoBMPgrrMi>CK~hSVcr zUX=796O@!p54{n=L1A4S3N`Zgc={X;l}6K;TX|>1m*ZYS05gRtu-Nqpf`E~$GbAXN zs7JUW9HyA!F+Mq%uXFjZ&`j~bqj1X^1koVOA^u=22AQ2SLC3eaGeq6hdl!i0B$|8Pi`IfgHIbT$ z1IVQF4V}dexP{+QXMuPf4MYJWI4VG#=!xx&?`YmCu_GL)@}z6ud?kVzy5gymOTFTb zc`1+@9SOwY98SWHcQ!)* z{PDX24HE}|Y-zkWfxUs{J7QY}6*G6P+Go6#VJp0bo>#IGR!cmveBOEwHIB{1=5u0b zwiQrq$lT=BQFn$4a}L}@76AMsX$=z18MRhb^w~|8ablC9EBLH^reQQwxD6_9oTkam zM4@%OwitqyC#QLuC_IS-gP9@@#JkZoEaS05<>)a&&Vn|XMFa*tc|?RjKtq}*NI}j*r|as${2IPw8z;IDn5Wfgm59>ce9Imo?&c`RGQNLHV|e)&Q&xIte7xhb)N* zcnM8MoH{Y$H;das8o)(}X9I`%h@hS)abs0W^Inf+T9=|Jw*Z`0N#)?zSO=3-Ch9m^jSJzxMrv4OvGv0Wl5ivJwnnn4%U1TUrPL|%qzEIBg4pQf4oh7d z-w4@oIH|m>^rS;xenbXpB<{c_un`bbjlP7G$lEdq+Aycmi@OV~%zVd2-HGn}5dRt` zAKxxAyPT997-a>}EaM!G_+I1N!}szM0jHYl(2!zQINqt)9PBfRV5TLAf?_TcIvxy! z0ZzK25F)qg$ZJ*gWE*;3WmCja9=42tz*EQt9WiRML`n*GBn1qka%y0F#!XxZ1jHH# zJwrq05D`)VN66cS!1M{cSnua9yr%lXA?r(MCRTlA&4J)t>jb)|_=E{t>m=HA?{7FLBA|8lX3?-=zgM%ShE)cUGPIn z;7!aVv7$QQEoZylTS4y7n7{A z=3b!_a0P~hXB>$fzcQ9f+_v3>m*vw^l+y}fCOaZe{z)cmB$I){J5_Qo{84x$?kuRd z&S??c*G~Fbnx1sdCdR9J$rNmwlxDGf#MvT^5erGB!j{8$f)|;nQoQpCw=yx#(S=OO z!C;E`4MSI?6!uO0Nfi;%%=peV4cMqyJKn`YJX-8)nrh}H z_zFZ%vSH%XMh!;0Ks->sdd%8qJ$UzN=j=Ic4+kZc^QYFFs!!?kCo&D^tGYeLb8qv) z(m+DSL^&UZEE`qSef?FVr4q4>sHqI_?rmlS!y2+TmKnJBaEM?!zYQiqrRPHSL0>Gq z1$hF8wpnC^P9*%=y|#rNkRU;QY?LwwE25Ld! zdCS<22u?xb7Dn|~N&7gje133vJa0IUYnA|*h@z7^5R+gpR~nzy?K1i-_AeMHGD zQ9kgf@J85##tHw&5VUgR=C)WQB{A7H^5LAQK`yor_AB8kmy#i8t985G^H`DxutDS! zmC%c3P@h>UnjwjYrDUZ}BpJg_w~1s)X`3+vW*K;q&=G{u&oSx| z=85&H>e9rMG(nJKKf^)r;DJqgog$PtuJQy8c^UnxzdG&(4>GsGF6l{$QS;v$*_WaF(Y$=3#6ZrzAg501pbHFd*+c*~OT*T>}4?6WI-ICa8 z_5nI->)NKNOM8MumaD64*{dAgJ291ZSi&=&P-VTv6_!jsF;*a)56kRo%4mn>l3ytS zB80iB1T}$~PLR}4uo*oT7NsuYgo#p$Y)k6$HbEWNT^OJ)>a9Ey`*2(k7$s#4#gUwB zY41*aZP_+{zJkjo#d#rNLL?w`N>o68Rq!D`t$cru6EuP4;=BSqLfKGeVK9`Hz^Ik; zQk6RH;ybB=b$EVl{W2Dq(@}^>+TvvClWVtfh(f8^v&*ZGp*C<5rhvQOUopK zPL&ZLRFaU$wOgm^Mo(sUsfp}vAjaRQ6v%EpAl0^thGJQg}aa3SC(5#f$l zf>SD-ib4>95}0DlMph#YQtU{T;TaVoJBu;G#VRdU4Mhu%Y@a>4h;`oo>(k*iee*}wJqg5;(nrH1`++Yju`3fF*q`mK_AZ&0>@+v zl&08|h~PRRdK}_|c>v3flFA@|$43|Uf0`nZB#!6G0^sbi2ss#>2@HoNAsG{hKO!Ga z2zShAld-~8!R!h>+=g?HIzpTPIME3L9w9fl;jxcp^~Zb5g*%*lA0*UpDMj3w;4G0W zyp+6^$hJBThaH|cp1DRmvK&<(WqaVrFIHzN5D(5;#KEPNAIrbY3q42PCqE=m9|i_X zL~qACL7YaysDORrnZ-ETW0vP|sOp5JkA7i?O=EJ3RUp_CnjWXsM2@FCB}Ak$^YBr~ z0w^2jynJplWHp>77cjab%uS1HNQL&Nlna9Flz}enQRoA%dTgo0dJu@D5Y$A=LMGH` z7cVy>#gSSiCh$54u4H@cyn5@PbY=AMBoCBN&N#%0ZX|EfI2`O5p{IjoUil&3fDXde zL3H876%jj7uhdt|SrXlH+2!~7knKRcq(35l!7emrIFuoQ%B(p%AS+l=be+hDibH#@VG`tj@(SrWDyCX}W%snk)Dc1m@Oi4RlFkO{b9;dD?= zu@f-6h>}qj*~Sr^xN}+) z!yeL_c%UNmLx$l|re{RhxI{9`xIDj#Zy{qrbv>iF9j1#LA#X9?5xtx^bIz(&d~&I! z-Y^2Fo6e!)u0W3j8%-$VWZ`E!(PCVpgLFg`mc!c%BtC%1$OskRkYX(RiyOuzgrAI@ zW6&+^wfG$vP{NR~*|i%oU;JP=+{&V02z)270yPUqF|H9PQQC<1cY!s)m%?jGjS1fe zxatjALoDJLd;1IF%@VSOp&!yWY+AJMJ{nhQE=VA?&adQYK+{lCWfVdb4r3ZE$AgRq zxxZP~j1h)2%h^fETO7~DEDV=3((-tokvqeow2SybWv$d3m7H=yr)e5R-a85{i6At;pvu1~02eqh zhJ)2<_f~*};s^uqY|s;|#zIM?JtsS6Cnm>IAHB@ukMASkiuYnb=BO}65WU*O?6m^= z==Tnjqt<{iL7C~m1V}uxgE?YT_-)#uj^<=UG~ioSI()LT^Jf*6hG^~vSD+6NU36O= zQz1k|T}MiuKj>c1Fd>Fv@@pQnc>HKdL4nh|w}zW*D|<3iyOxi@K$HRHBGLwcff?7K zRiF4A(rdE!2*#Esuh?E}D~+U*c!rm)GSll`WUnNTyrLbmJ4OQB=+<&lYQlG0Eo&?4 ziL5h6nRz<+MzG*)H3zPyXSuh(kN1k#4PiE8UZqy)Ks;8r%FH(-S#kBI{gLGz(bs}3 z9_=K`ut>5=#qH=dPzn``tG@j-h0yTn-a-#2&BfT%dm9UxxDL(1We*9$1C2dfS^i_o zJICGJKH1U86FD8rJN?d#wgIx!pV?o=oX99f6Vq4P7DlAZM;W0@%NB{83IfX~Z}8qv ziNn53rVQEOh%w?+6JdO86{11FWHj?Qm1Bn|qO6?WP9?;Zg_VsE0a72C?7S1#z=o=z zA<1<$ixHFm6p&XHJreEP=iZMr+_!H!Lnu)I9Bj%EF6*WO&DFO!q9TXM_M*laUZp)m z!DRzU?L2yXM;y5NS3(I_- z5F}^M*hY`ar8dnL0nLe{=Xx<0H}nmtU&I|&P;bQwGvO)OVTZyN)#pO+?}(a#tci&O z4-1?w%Un4sTsR7`&8S^EFZ`Q9$c^q-wjCyM#S|hsD_a&4P#k>uf{vG7VoX&KCa|g~ zyce>s^sxwLiBuJMP}(6-oZ4!CiSXr%z-(mu?V^E*tMA~Iqp%ST+q(n?!(M})Eb`I&r^X*2k1stAYO?lK z(U1fh+4LyMlmxvY1_zdjKGVeuC4n_PcIdJqInWs z8nQ>&SPd)R+9k=pCpkd`8cTyaABG6ck&}dg6T3WCzA3fXR@uZ8$yHF}^U-0Nf8m68 zwVl!%_IJmkhQ?+BnOFmm5IqPjEp6%Yp^c#v|3?Fe#{`T)c-$F*Npq8zAF?;8;ep1^ zKrjJztHeJ1h$~@C*v!iE?y}SA9oVoYHe}q)hffqsPB3Qs5ITW+h}@19OhMm@r(grb zN0%?2VKVMiPT;N5=LzhF&gu}1Z1+Z#&oNinW_FgSoWLFuqx34u_2)OTxsImck?#4Me+O{*}2<3<5tszd+EbJk(&+8uMBVws{>V z1vHz8BRs*FCL_vhZ(&$m+u#5+e(7j_Bi0FZK<|i(?0vRKu9G{ zLe#_kp};B-z<5#1yOi}K7cLPVs~qr(&LZduw*tXK*VXx)yv`OLN5@$gba`+GQHKFf zqK+d5;ILdWlj-dWc+Sv_!4+kffym_>a;3~DkeL0#+9j*YYrTbOS&<;KV zzbEcbhZIo2CiNj0+Vo~-Hm_cNgjGRUYZUjKecB(NffS(FVTmDTLxFBc*s*7UI@^&T zKXWWzRD^T!xF4YGllqj~UX#O6vsW(ffeLMz1BXN^^8g}4Vaw9D(Bxyk%8}0y$IMhv zB#wEq5pl5r%|oz<2kHd7i>XWOuSm})$kLIvGec~1UT@8ML-)|V60?p`CBiyq$2etjh~zR-@|GvKC!|o3_HoEN-};#=Lg7@LSB2Q({=CMT=_oe5BF~kmgPeO^@ve}G!eIf6vR>|x;SxxGftL;4+Ry56QWps^#T*& zBKnL8=bYG(_ltoV(?Ph8+a-5sYDahzSX)O-YZm`XU5()6GW!dM&~bD=m(dVqgwQ+;k9pIGqF{go67WCQ$BH-Nn%3;VHH%jz0@0zM*4tU>#Y@)GY z;69htfN&D22a~tJWJJv7qFgYJbD}qd=>QCLA5qFmQrn0iUYjX7hM74+VQM%7aP7-F z4^e{}q*?ciY6xP`(kJDCA3N_-2_+<@Oz@KO75YZ_DK0Cp7iBN5bvY^(_gTTVomViz zJQ9a2i@nlwu<1CVoW|(Az1Nu)EMt)6?D9I?S;grX31yf-hFm}t@g&a5fKJjx&?&CK z4%C0-z7^Rm5SlsZO2Rs(kPM&kQQ$h1|`l~PLHOtuLn!3 zYa4yc4=_%p$szdw3Jr&zV}Hs~JyK_1t!T;#*o`j*-c3XUiDdD%lWsb(l=6;7BiS_3 z0t+trS>L@xG6Z#Hhdh=Bix?=#ev1UG2WWkvqs3u3d@-KPbU4!-g(#lS#3IQtZ;ZKE zeRvlQd$g$)9_t(r-X@)`9i!s_Fw zMa&`PrR3- zNXAT}@hyt!#s_zS4Sp5aqBWk;7-CdAQo$KIV7}?OOdc%sdHqB zA|4mQ2D_*n9F(EDF-GOa9*#?lbXBK;6y}W31vA!pmXW#Lfrt^F={h5_q5RHpKB7^O z6%dV$e<95SwS#@Gz~|%fiCm%?VXixvftmmvn}e8Rkl3Cj<#B9kze2t@=AGK0yp@>1 zn0O2?Fi}!9Y>Tqx9L~{(!RlszX~U)aoIZW9G2DE}+SbM@ul>Dn=zIy-UnLaqP{r?7 zMCy^1&fHx=(jfIItQtnD41CzP2vMxqupyjILiS>Nxf(QrQDquvIXTthN1`M#1qs=vXEY_WZa`On|mfgw4Z!6BuL{yf~qg~ADY%wzh9b$lW2#u0pc}bEi=uT#B ztO;S?N`JHWFcRL4f9VRwH}(X34d0>yq4NFfbF1_69sct;5&7#YO`^H`C>jA+7n)4&LAkr|Q=jfoS5 zPeHW2ge9)zSey@zU&U*?1tUTgZxyLxM)=%>K2IRG!LkSbDq0b<3~Gq9BjZ6Bv05AU z=H7@&x(TEics)TsV1#q7CLF5h*$hmVBU}S=>tGUQkqE-X*of4Qr4gGW;YtbR18ycN zq+ks9c9&>BSN>L|#3Rs)eqrz%^+hfooAkW&Kakjb?zBc*miMip>-?ODf>}b0Ft)iyOb2jkheiJ zN18hHQZ5K`K6Bn6$NCc*M3dD7ni=H_zX{m%N|Wjhtz;qs**L~PnlJvM^^Pc=JCKGq z`bhX2eP?lSCr~kSX*VJbBNivZRnAD$*!&#l)Jh!|N6Lc;$%Bc)VT6G4H8$96rM+u` z!*&4;LJpM`LHTMlorD{?#5yF9l717>CI)@%+{o)zBpH;PyM?r5#OlH62`Uq1Z6vc` z`K)B7VdKVeKKID;IS+^JgV&=XS7Vk%kV!)*H0+0#2|egopp}lgq5~0GOjz*x>iSCU zlC_P4Lu&T3B%OrPAre7$-R8ipY)<{8jm7Q^`cgs;547n{M4Ly>oM)I$V5LHmp{~$s z6hFd2;!>ms8M{nQBS#8%Swy8{uuX7#r0I>KYw>MiE|MpEIvy~b3P`UcB2|VA{9$9B zZczv!B#Q(h4u%uHuo%c1s{orxykVTV!x_C@qBe}hitNPXLYM>HR}+ajr9mgHyx`%~ zD~6Ou8xt$NfU;JL^QjowMS4Lf9O$7#Es6(5z)2*cfLm$V9ori*LT5?tYWFo!QYxLk^>s6H>F9^m>NrDf=59kA8lO_t!nbwr%Mp9B(u@<{1vL9L)E+5bY zK|hh=JUNPId@G)IwoBt_5y}tqig?7tB0NIHsvxA{SK2ptniL2u8ZG}vB0b@Os_)M7 zD<=}ReO_~jfTMgEaV`oYGrPn}hYf zd*j1pN{UWiDrql7vtY4DK{Bs!P6RP1GLa<`@uAaI992XRVXLyQ5_cQ3$cuwZYoLc0 z+)-xauEu02hawxFD5HcUBQ^t%J((Pdr3oooL11h+WmHPrCiT}4@NGqyh?~WUtxTCi zV0C)ueLA44&cgb1qKLB#;NQ$BSiD<=63%R`&L7BD6=JAU3>?ECc8-z4nA5t9-7@*t zSHg4Q>d+g#n-Fv&F`J1LDVJg_dg+yN1W`ke(VXC2ye%a5BcYek3bb~?I33e0y3Cis zB7}dDa2^N&A$4qM36f))Oft9a4)efHk?n~jeac*kl`Z}lgNe%k5h-DgUK496Q!ff9 zN)7^uv3>=1s=jY$Ey&KztZxj+Kd-Dg?5r)3Y9&|^pVui2s5Oc0W+tY=i=;H~e$wN! zNs<)_4Gcpv+8;q89L8b9iA5FgQ9sN}ESW$-w-CYN>9WTyTp_Q~gZZVG%-Oz?=-1P3t^9Aj!0w@GpDyIt)9R&BglZC7!oC>$yI@Y@Cm3~bp%QmPnlqhs zMX`uKDWClDHiy8q*#(LQ*T#1524EXiT~((&WO`4aNSKJ+(N*S{KywZpZkJFsF+COu zW~@VR{0K~iwQHKkiFy&|cjzNsTkq|q$>G#Ra*j=DXDIwb-haKjO6QN+9C2C?n`cF3 zBfWP9r}!Ej&j>Ol`RDtq3%&hoykQ4f(uuu9_n{;xDJKG2)otpy z%J!))cQkP8Pe=sLY0qTm$~+`uWQe@5dQO)r=b0i+6V{hwY{gCox+AR#c@EyBw^k{! z+GwJYylFktZG#-ar1EAMk`EvoaX?0gL=%TRY&sBR*LcFa#;ds|+7ocXKmwIbM2v(k zn2aJ7#H09-oPdNS3pz|V1HM#p2{A1RZ3?PH;@KGzI}58*iz69>2oMj3tO*+G{0Bz3 zNG%Jk2`e%oN_YTryOn`U%Et<-C+@Wa7A!wJgvPj32uwp=#s!JpQ0r&t2n^VzjZEQB zgc;zL#x}){gVgJ|TngAGO$wmZp!We#x(5u}YI zm8hH@yJg5liKHXH+r){WPb2QJ!4bwWI}oX1mbsi97Fk!p1QW=h!~^Ib$O_V8f<+^a z6JA8{gildii7)Qq#cn+!*N2;f`QbGDxcE~0rKJs*r;SsAYg?P^Tbs4z;kxoIth49( zUh72DMDj*&ROB0eL~|6r%Hk^~4>9ect?UIsL&y$MA)EnIMrz2AEWmMaRT_*0GB>2& zd{0T$y{cjt4t7;*zmNX39+RU+7@!xO35rf-{5ohnQ9Qg%Jwk z6B4o*Jsd9H4|rJxf0hcDvxaEVm%LnTTB&lfI%{m&vEW)&ULohDn$P zK`h`7dZAt;%vOufD4$3}QJhL1NQirF0{OdX3bPMuW0odzRH1=0hzto4R4g*`mkd!D z7iNd5WRfAAIN!h46dJ%#@#%1wftP9Ps8DewU4M+* zI(>8^7Af#a9E#(Tb(@Iu8V@KLS+9RopBZ7yYx=b5_>JUjr zQXcwFQgD#Ez{Jyrnd%QQuy4A^YI)Ce&;-K)u0X^KBmR}6f2LocsQ58wLCz67plmw& zB?}yFV(%=8#Hcu%=8(W>=oV2+JPZj2HBbtOu?|>OD?Lgfb>V%Nix&};?B|h)U2K`K zEzYJ(N3@yQyiL=iRmP>|y@WeM_i_3XmxNb6Nxq1@sB9Q5l!^++3&Lr{N!u-L<%|dE z*ogRo4)0kAF?~w>fh0VtOHQzM7^0eyqN1H;yd9rVI;9^YrU4?ZlPDN{<3v}%<8d4i zGreq*=q)m;acmhL9UGlYleQ5C%N*s|?qPkMjR-YKslXJ*M-Gg{K+Cy8V5SZ`!AiwH zyXXc2mk^y3Rn2LQ8S?49V__pm3F0UzEJ*|zwa5tg<54#kDLTZ^jad)@McHfU1~$?- zd45Im?7>RRMuo{t{2)W_6~o{!t0H@+j;CS^bXtG$0TYmHG#n@JZrtw-6;(+2vYa(D zbvgu*_+D>r5_0Zx^>E0RjnDir(MtYcX;1u7bw^*?-iBc&x@Fub`0OzJ>GZjdJUS;{ zoPpGeArh$-Gr@*b1l-JV{D2S$)?{wvNCid!y$nu1`}nvjdn~QtbYdGr=MAhB52fC- zqCRfHl`^#TFo*HZE6tRUW*-4mN4%0eR}jT_5XrdBmZM`j7_-$QwLYIQ(kA^be^z&8 z0fsBOt0W_wn$(+jn%DLyQ*?4Dw9;wE2$eX!b)ZY8!#HQmDo@IzL=tgw{*B4u5qo$g*m7U*RsqQ`#jSxQ37W5&V?&`}3Db={?gRcatP7H> zPRkIx0>?&vf@DK;rgSAlpI)=7>#)mM;7OKDh+DPiBo@cTR%rVP6yix zP8+>91}mTBMf~;>8g(2kcDcydB$@5f<=$PX6>A@SI=M3p9K^2%p{G0t+R9HkPo zM8bk_62(hQ2|+0%n#lxCRcT8mnOg}3BsA!tF?t!HGl_i_*VUnkJK~lLNF$38Vvcwp zLNxloPP46Lo(oSpsw`wgyq!<>s9nvUi_4}RB1?<}wtIwIqy*ge-R*+_B;Za)n=IF( z&<2qRiIAuc+2=TxEz@}%$_|k~sEba)2`7Q$s^Y2Q_!?;d6@$PTM(fome^5C89HblK zlBA6&9jyG|Xo-n|7kFc`PjKc~@w|G0HX0G{nZhDjaiEz5@BU^^?l>lNEVv)Wdg3t& zy-|YDN*j7I)suM#`k%ch>tSo_3cQ>O0B7mJp)UV1`W?Tfnh3fhr=37QJ>9A zS7A_i)-YvZ0zmm=L1fg5Yf$;I8QSI_5O*MI9ifUkfd=PePbfyJ(iXJDQSmD{8FsI2 zVNM$G-qwsT!t7+6MzqkIThX5@_C2E)ff{C|96yQE!-}BgEACA0HpTqLM~sSG2Du5E zAdfpq(ui6V4TM|9AC6aQeU5w*8bCW>hG3X7#VIg4(fg?7C8m09gB&Yp9F7Q#GXQ7o zPvQp70W2Zx2|VK1#Nt>z4(&hz&w?qCl%2{8f#K*P9uIapVShwZRF!B(b?+EQg}JM) zqX2SHkvm_0o!H@#kQPxMp&zevQI9y|tyBImN%oE6BD;x(dZ|5s0uAQ`a<4o_IaKcPE#W7#Y5u($~lNa8)nF!;@QU-prm^ckE!6XzPotZG5Sf=qz3B?F} zR+=dqiO)+v8*6!Y=6=nae=WgUEQR0G4CC4a_9gGOR&~ z8WsmBjP!Xw5N>3dL5jp(E3;s;sc5Y%$s4>5xDG-qrd)RuI+51JSjFOs;yy*0l^2x; zkOCNWC1z$Gj-{XN!8U;mAd zdfj7^g`L^s1TAX-=_O_Zj%L_Vd51?S@Zm_X6BO2Qvyl}0FcSnXLDFyy5N89)rjR7n z3XCsjYFq7HJkT5O)>b*bE>Q-=*X-hN(aD5FNy=wsq~kdoXeIk(M3{uDhK5u(0EZ2y zeUtg{Au7twM4UWUdC5IUZ7h0xAe%aE1)aZyfx=rfz1Vri5jV4m++%zeA1s%f{#`0A z2o5{iddPBi_` zhQy;r-UJSMNoFUR2cAsK19%>dqbP40@W+pHZYJ;m>k4)!LN5uXAa8_0y8O?lE&rBz z8bMqlHIxhy$3#VYMiozh7>rHP116ktNOU-k8+1=1Ke2GKtfT2Pj1OIi6egHnAm1zc zg9sdqXRKFTu0r<<3l*Di;soLg??OWHW_NbBx9XR!(aG!UQ)$T@1>k7AQaj__Aj(!R zNJ&()9B)U6n?EHQ=rP=zr9d%a1|gw(@nxETgs)*YRVQUEVjfYHVgfs>PNQPbMbao> zvcv0a3vBP6$!`MlQ<1c+k^Jh_TrPT->jLaR;w1V?CQc6CqHe?`--ZPRIcR=4L}?<+ zE4o$jPK0ZUHpaHf7beqjnb#UT?J^0)g#X2)DZnicWjrLP3Ia2-;ia3 zWD)Q`cN$>sh$D`;HP>rD`I~F*_nI#)^6`j$Ty4sNzmNO>zAb|vNBISmf1CT!|D5XY zq5KA4zX3edzYp+Vc=#iL-`}@?0`NOiR{PI2?Q|)h;^F_yJ+$*+;9HdS+d);dtNtaXzUFw!!#`-?=K!Dg@SkuG<5fT3?BN%DI<>FG`37+H|E<8oxE@RS z6v}$;)!ain52ySJ%Bp|dXHq*_m+$)eCjo!q7miv2bj0yoH>IrlkKumIgRXM;aCgf0 zrL6W}%sq_v0hG`1_1|vb_XPfA5C19m&`-_ht0}9U`}}KaNAvRyU;k7CKNk3HD69VS z4E!w0(;ogE?xB6*?Io1e|2up(wXga7jIV#Hf!Bc_Nm=z*47^6U?&0s}9@>8d@JCWs ze|}-$CsBT*uYcFirTX^;{_h^XA9$EI;q#3t>$%S{@DnMYOS?#nwpPsvm^0$Gjo!0;l&)uMWSIUBag?qr0U6g;1vf4TJ3kk0FKj!Q2GjQSm zO(?7W>$!*d(Yid;!#~bFJok5i|3Av={|`-l&Cfe1t3S8+V#33FQT~#LKMr_ke-H4h zf$OABi>Z}ITGz{7LT2mV73f3~Tw{rDitYUk|+-k?0BtmpoaduV4D zxq=rpR2it@lH{Gudl!B>#2RwlkfWa zPcrb`z)zs8=YGt<#dj{GtoD!iMr!|o6#vH8e>CvW|HlEp($~KNc<870^=XvV{@b~S zb=1BXP}Y7w=9{U0kMgU5-;(=`fs5|_uWx4wco?tbfnzDFpU*e-B|n@;SOA!m9(6_1r7Dhw<*A{2ULT`gUqx>-9z8 zYUc_ASN%Iu7W{n%uKEW&{Kp16= zx1+53A24vO<9U=d4@dn+s{atmf9dP*HgMt3RlwE%OMr)Y(7H@hR{MWp;4_r>Q&#;e zxrhFoN%5>{!3r~xbLR+ zPX_)e5AOjF?Q8yTN?Gmyjj1m>bC!qy)_mP~!^uNzYq zp1+)XSTD`b9?E*|x44J?NdA1PhadaB^xRW`f6~JT1}^$}6Uut-tGI`Dgg<*d{A&h& zD)8re_}%|2^+)USap3CD~XTJ?F5B=OjdBNBJk%5bU zz0JcPbY-f49`LVv_!98YAIX9DrL5=vwSjBB&hzlAxQBVue)(g{>i_HyQu~sNzU<)- z10LGH3-IG9tNjZN{H~NAKw0fPpL>wQMQ_jd^*_ZuJXiR9nXiAB|4z@zuUvx2CjDg$G3AP z@bFx%`*D=jpH1$eeXUoEvYz`l+(Z90&yT09b-(3R2|iExRla`Lz_pH716TXcGjP$F z<0-5CH*pXB5nf&5;a@QI)t{GA)^l(6Kl$-~2)NpB8o2n>&pmtqJd8{8b63i$|0M2V zT#^INr>y?`i-BK2`9fd+E8IgnqA&09_3!ng1Q-4Jn1??Ico>)P>XwxC+-GtR&lP^& zm$G{<_t3uD+3@faf1K)zkG}`F+Bwz0h0nL6tae_-J+vdfQ>U!@KjR+oUwZ3vJp9f- zNpS7=Z+ZBmfroa4Z#Sas+Ba~~vC}>LD+Vq+c@AYg_iFB8yjtIn`ucbLX@VaQ{JXyX z!-0o>O3%FkWv%-kau5BH-1tDsYX9xrL;H89{8Y;7=Wk4X&F5=;{d0eo>T7+!=j*=` zcxeCO!0%64?R=1X=#S>-S(NqMoBcdr|1Ukf13dIc^3^YWJLem?=HYIX)y~tnhxS{P zcX{}y3|w??jk5Z4%r8>=(g)w;;SUEM`Y*b4wQuJNQ(yb&0hHCwySRtv?xH-Pto~f@ zm#H1`{Xg^dPX!*vCH?dVzW(EY2RbRaXqvLxd7i1S=RU;4Kh8b$Q+RTThhJ^#i%-3i zvif=Y|EBulzu)!sUs!-QDC@bO-vDDUy`?;E)G(epk0 z=-;I0-V6BWJ$w^*XlDiZ&prI31}^%)kFuWobM9fDweElI;k9d0`=Z<5^6>M4hx%HV z+f!CMmm9eD=`PBm8}HyA`m>92pR(rpD(+$4BwxMS!+-mTYhr!z>#unDMZm*zMTgN$ z-E&`V;M(tx_3(e<9@_5$e>!D7_vZ#KJ@;=t{7%6)%dTtwdXs1Q_ ze|-J@2HpgI9A!Os%fN3>`D_n=kAaI`J)W}K|19@FZ?%qp?(1J|>P!ClfUke%QK>)Y z0soG#f1!bE|F$WsKTqKv=JU>!&-d_ma}W4`67Xfp>d(hb{o7D}ormA&hUvMI58nw~ z?LW`J7b)L{vf6nG_u21d_Hg0t#gtY5W86c3w2uz?`rqIl`Xl-0Z#?|08>Q#21OF!v ze;M%5j`&EIvfBTUfr}nK&BJeW`!ozDfPtVmp{XTF#cN2K1FMPNIWzE~$xrh0YJhqRr>VKAdkpH#6UghD(-6FLk zIrII%)zAAI_;HkPN?Gk(!9BEpI^}zN_*V^F^1uNPZyuBCOAh%MaJ9b%JoI1qa2Lvg z|EYnC?)@%hJ@-QfuK9U^um3CVp+Axn-t6n|zGZ4(^Yfn`{z~AXzSe7svYz`s0~h{3 z%fo-kJ@ixUzmc-~bHc5zx#qTy{fS7%5whp}hp)c@JhU&ox-Dh3|0?dG9pTU8D65^1 za1Z-Ybn>|#{t51(otpyxE6Qr;_P0)O(a(4K`VRpf+E;&$q^$N2n)+Jzj)%XLyT#`V zD69RCa}Vvv{{IwT|GTEX=)gNYy!P9vzUKKe9^L~U`mc6wPg(6>Zt9C)oJCpv{5w-$ z_^{~VS8)&hd?4`Gdibqxli-q1z6@OLKN@)GzvllpzW%0x>$#^>R{gh{c6L$T=i$FL zaLw}{dH7kkP3`Xi{yh)B9C#S7_Gy>0#`RPKKbrEQhrf<{=%@O>;^F^f;3ooqp@&c1 zF10Uu^0yxTNZ_Fz@ryf9)^nf0J;fLz5#RiUum5`nF8Xrlr-s4jLwJ-jIdV>Ek z@Gx(}lUd)@GrTTj*f8E3106g^bAn+;5YUih>zV^jSJp6a=p6Uyq zzvB2`H8RpUITwT@Utna{*?ya zru-L__1tssk@_Qg^+gXq06fgI=31 zc2+1p&BM<%@V&sl@8N$4JnRd#b3e*z|2^EpJcw>T&BMQA;G*-dr>y7R_IFY{ZOWhV z^rqzw-{T(UQ}}#2WwrCb`=t89htK)?F9jazOJ4dN%BuekQ(tuNsUCi{ zsV{lpHI((-$K5xze}M9LeEnw|_!RJmP*(ddH}Kn19(wpU3|#B=bjre$+nkWv7d`)k zuYbOQYhPRgT>W_!@GvgT|1Qdcf8W5h@19Fp{W_VcGvRzGh!ot~?8d5^C@3p_kmeDGHu{utn)o%;Ykp0e6`t7%93`b^4t z?s4_h&c&2p;o&C$5A%5o;73zd|9hss@aJ}v)y`WDd@tpPdicK@xc2EEQC5HM-AMh^ zK6<~0p9VaPOZ(+klvV%txrhFoOS$ghZ!+~IZ(mMX{rL*_Fb|URU+U}MshQf*x_k_{ z#`UNI{3yz5=S|#0JL>0d%IeQ=OnuGg%RGF#mHMyeeh;|XIUjhS=UT5jQdT=J;vUAe zi}J}H{^#7oJlqlZ6FvNUroQl2zgPQrYo~U^_do0Fp9VbiU-N%6%BueeQ~!39>y$MQ zmvax#y*K6El-17Qx^P9+{1IFS01FS=l(nQ(2nNqWxoCq zvk5M|`joGK6X0PTZw~xQU;jK)UwrnbzW&pIhxHYoJ&CgV^NB+JRm$qmow}+1Udn&# z;g1I%`l<`3%38-aau3hFG36Ke`v1*6%!Ar_31vO^?sKVrm-4@P_#=Ra z=W4&-jI!!K(ZEHwPob>-{44kHT+RQIhaYpl)XvGk-|yjV;GsXl&tG}?6$Y;PJdU!) z^%~QT@N+;}&;5vjYkxi0!|!1C&zrn-z0}t)&0e%f|J@=KS{z;V2p)B~7roNv0EDyiS15^8=Ctm=r zd3daW%YJnu%Ig0-_b{%bDWBotuizf$S$=_YJ^c0DLqEkwpGjHmf7ifIrTk)F|EQBv zJNE?sX+85opFJ-~MY3e_g@}`H+JSf%IeEyS%KNWar|KY&z zMp@&1wSmh{yW-&=;U2~-{Cu8=e}{XRANBuj9)6EqslMzgpYibhz(fB9KZdgU|7`A| z9kqXshrh+t7ak5h{43l;|69Oc?%~IsoZ6TC{80~oKJZX~1NcoTyXTtvXFYiLY3J-Y z?S_KC(7{yf{mr%y@!5nub5hi@3T_|6?E>$z_;aN)^g zJ^Z(Jr*QC2&zGjOfr zMU++lC)~qx_fUS3hu`YV)KAUl*FF3K;Gw?u#jid53RC|?;3rd7KVQi`%%`4vfU=%@ zCHK&d@bH-)KKtNQUvkSAfUEx-zyp5nqI`GCYX5nr{#__PjCsS7Y*L!G!i_ZLmhu;}^=)d^d z4?KLs)E8a75oNXW3R7S6`8diN?+3Vteu}<5ld}4A>$4JE{Pc~$)lSdA_fYJeszWzhcN$qI7-vX}wJQsNA=c$xuD65?hau4IxzS#8e zZyLDp^Uaji&+DI?+R=Xhq_2Mh@X-Gn@c;JkgTO=kdhYEg>$xvBaINDbD69RSaS!ci zzdza6zth9gbG5$T^!2X*9@<|7enZOtziV?3^RZ0hxXqSy#bQgTktq^OP0WxYJ2cZM zbQp4+N>1YtDWPdl)Hb3T9i<65v|a7Ck&4vH6tS^3IZelFZK9&=uGSTa_WRL&U(a2C z-M$~U?{h!r_kDkbe?{Qz(_zMcP;~zx;$_mbn|p2Y=f3#T^81MU?>NkF3u*lStmr=6 zJ9)v!ogSj)f_o?-D!2X?L`^&kN5>&7|RvD|){epT5S|D|)+}pLa`B&(|TJ z=ge0v|KuL&9A+Lru>7Xt?$5sa&hpE}-G7vLJ!$IS7&!a=PHEcxUC-n*NP4+A_4f-r zN4mZ=KC=|PzdWDhOOyXf;LO()Y5YG_^m~MPpJ(|8LVl+BJH}gFm+I%aafdiQ*94AF zeQDY)3!MB8(&TSZ^zq?-yv_1+dL@6>&nnBGEbjU2-$v5-zZ3F#PaGkQe~sQLzd(A4 z@n+(_-gw^o)_iUX`RvnEr14oDIQylW@uP}9kG~gREKNO4`=oYRS9>gfw7Aa;>$a{m z{;w&z59_v{G(O)2&U#p6yk6hrpDF&C@vFt%hj~9Dj(=Imr(c&y!xslmonwvH?3aA_ zZdoBtJ--$AapOJrfbnZWKJ6YAXB|ElIOlwOY1-Yc=<~?)-owUg_fO-)`_$XwwA)wQ z`^CI}Z+vFpR#eH7b*R`ebDOL1+!MeTB`0S9+J{l@b zzg|)Feq~DEYxx^PKIhvr#&;>YKm0Z0ZLUu~y!UMq$G=?M$KgilOlkP)kk5O1sr0dN z2s}f4vGH?mNdDc#*BUPfoc&u%8lU?D=YDA|O}iTczf$^E`Ah3`DyT7EBauakLi zB#nP%$iGFplkuIu$bUilSif#c{?z%N@lN92FYcYg#-9wFebG`HpJl;^b#;&NgMo97 z&6lRmmIG6}Jpb&p`~q=rmwV@QY4Yz69G}+Gw7WF$^QFfbUmbXT@j24?d=@zO-HXQe zD*Ae^CH@a-{11eD&W$R|FBp{Spw^O za^r6V&iOoE8lSz2UMKm_8E-Qz^^5u1E{^{canEO*Go|r)JLL17VU+PY!&80_@xO@U z(>!qAa}OK8Qrzq39zRtY|DlS${xhZ98vkqH{l%}9#=rWAl+StcoaJYTyFcgizb(JL zxc7_oUqhO9ZwQ=mKF|0PMX!f-eueSsBa;umBUBjg7uFVW<^s#YJ^!mx4YJ6|t zr-`qTrk;y$N%@7+RhB<5@R8z8r19SyIOo6&<4wn;{&HSbiQ_*t@Bz~Gr17a#jPp3k z_(zIfKkNSmX?(ign)o>BwU$3d+*^6#e<1I?dEVG& zyiMSI7d;|QyM4sHU+_$6+Py1q{PU!l$9DtgJ{n>9weCpc!1LqPNR>?rr(+EBg2_ZWAp3)Y4Qx z{aR@}N8IySKh>mZw{PIo)5!Q3MX%>f@qFV?h5QS|i=>&~#Ua0e^nKFQzbWK1kF$+8 zn3(G1z2FVw#o}IP5Ak11nlxchJpA2Hr9WzSbBYDemjAr+5u% z`c)D*?e#LgP|?SYc^M+j-)~lI_vKIj-$%A|x$#R0 zgQRCze)p+q-S!m!%6LiOy#HP-jn5~FUQe;~5NY;T{d*GUxn-R=^;{(G=RfsSlg4Le z$mgDFEKUAaMX#UVYf6ppR`hx2y|PjopHBCtc6r|0Z2V?%-;dPaQX2o2A)kAvxA9$y z-Y)y)d1?Hw{X^noq~ACGP~d#O>L5-2n!x$~QzA{fp9jvoFSh)1?@M(uznhG=51jL@ zjx;`f6}?XG<)+fKyC`t(uYBWM6nz|W#LJBz4f%}Eo6`8VE=&G=ANWd~`JEDY59za{ z$$whW{ka!L8vj0U-e;#tQ)k|^G+&&nyDfjYxcBQ0@hoZl|D)*s?9+wP_;kKM@fxQ^oObEbjiCpWj%1Uf|5vZ=~^gNYU3nEV`NAOFq9JBYhK_u7fl_)k)F zAI{11r19Sxcz@~PmVf+1$)~OOD&q~s{d{12{%bys#r^y_NxY^s?Ovwn{bGJ=8!r$1 z8u2V?>e;O5^%qE&T7HZ2R6qCWO5?)k4lie3-m|>@h!$%iTk)^ zi|;d^vcQ?I3~B25RMG3<_u{d}k0|1B`4n4%XO5?vSaGuj<8~;Yp$ARairP9=S#be3mCg~3> zzeL>gbHv+7`-cOTa0A#vJ$Ufg{+Px7Sk-xl&Y=N~tI z<`XHut9Ye2K4Zk)pZPjL8vd%Hj}P?}N#kE*R`Q|#`Nl5}{37xF=F>~ueRw}=B8|_Z zA)ocxS(bY65 zqWSS0{ng+djn7c@cDWyWOHwJ$Es_C-Cm#4;pXrOzJQ9_%`E{#Jzsb+xpV@FADiQZx55Ezbh5J z9>%BK_{PA=dtMr!`twsh^{g=7CvfKdSJLE<3Y^~)FO$ZvT+z=B_6z?W{*j{B&ps_R zUS~n-FYjM##qlo^_xjnVKUn@$aeofsz9^6;e?jnJ-bYK*ZdKs;KWO}rqWd%NtBp5V znCfBPcNxD$-1Diwjx_#D6}?}KPk(9ZsS5e*uerweDti5VKY81D?M2C-=acQm^8@c7 ven^~l?-2KW!Fsz;ns!$xdOe(bgQdxTSJCS~ReF*1#_D=L9C-A{O8xo&Mc}|A literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/parsed-lock-file.json b/.nx/workspace-data/parsed-lock-file.json new file mode 100644 index 000000000..6bb48ad22 --- /dev/null +++ b/.nx/workspace-data/parsed-lock-file.json @@ -0,0 +1,30434 @@ +{ + "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:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.3.0", + "packageName": "@ampproject/remapping", + "hash": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" + } + }, + "npm:@apidevtools/json-schema-ref-parser": { + "type": "npm", + "name": "npm:@apidevtools/json-schema-ref-parser", + "data": { + "version": "9.0.9", + "packageName": "@apidevtools/json-schema-ref-parser", + "hash": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==" + } + }, + "npm:@azure/abort-controller@1.1.0": { + "type": "npm", + "name": "npm:@azure/abort-controller@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "@azure/abort-controller", + "hash": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==" + } + }, + "npm:@azure/abort-controller": { + "type": "npm", + "name": "npm:@azure/abort-controller", + "data": { + "version": "2.1.2", + "packageName": "@azure/abort-controller", + "hash": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==" + } + }, + "npm:@azure/core-auth": { + "type": "npm", + "name": "npm:@azure/core-auth", + "data": { + "version": "1.8.0", + "packageName": "@azure/core-auth", + "hash": "sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==" + } + }, + "npm:@azure/core-rest-pipeline": { + "type": "npm", + "name": "npm:@azure/core-rest-pipeline", + "data": { + "version": "1.10.1", + "packageName": "@azure/core-rest-pipeline", + "hash": "sha512-Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==" + } + }, + "npm:@azure/core-tracing": { + "type": "npm", + "name": "npm:@azure/core-tracing", + "data": { + "version": "1.2.0", + "packageName": "@azure/core-tracing", + "hash": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==" + } + }, + "npm:@azure/core-util": { + "type": "npm", + "name": "npm:@azure/core-util", + "data": { + "version": "1.2.0", + "packageName": "@azure/core-util", + "hash": "sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==" + } + }, + "npm:@azure/logger": { + "type": "npm", + "name": "npm:@azure/logger", + "data": { + "version": "1.1.4", + "packageName": "@azure/logger", + "hash": "sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==" + } + }, + "npm:@azure/opentelemetry-instrumentation-azure-sdk": { + "type": "npm", + "name": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "data": { + "version": "1.0.0-beta.6", + "packageName": "@azure/opentelemetry-instrumentation-azure-sdk", + "hash": "sha512-JP6TJ7vDNX6r0gN2+EQBINTNqZ86frl1RAj5STtbLP1ClgIhcdXXb0hvq7CuEOv7InrroHMDoEYG80OQcWChug==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.24.7", + "packageName": "@babel/code-frame", + "hash": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==" + } + }, + "npm:@babel/code-frame@7.25.7": { + "type": "npm", + "name": "npm:@babel/code-frame@7.25.7", + "data": { + "version": "7.25.7", + "packageName": "@babel/code-frame", + "hash": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.25.7", + "packageName": "@babel/compat-data", + "hash": "sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.25.7", + "packageName": "@babel/core", + "hash": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.25.7", + "packageName": "@babel/generator", + "hash": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==" + } + }, + "npm:@babel/helper-validator-identifier@7.24.7": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier@7.24.7", + "data": { + "version": "7.24.7", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.25.7", + "packageName": "@babel/helpers", + "hash": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.24.7", + "packageName": "@babel/highlight", + "hash": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==" + } + }, + "npm:@babel/highlight@7.25.7": { + "type": "npm", + "name": "npm:@babel/highlight@7.25.7", + "data": { + "version": "7.25.7", + "packageName": "@babel/highlight", + "hash": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.25.7", + "packageName": "@babel/parser", + "hash": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==" + } + }, + "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-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.25.7", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==" + } + }, + "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.25.7", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==" + } + }, + "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.25.7", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.25.7", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.8", + "packageName": "@babel/runtime", + "hash": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.25.7", + "packageName": "@babel/template", + "hash": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.25.7", + "packageName": "@babel/traverse", + "hash": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.25.7", + "packageName": "@babel/types", + "hash": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@changesets/apply-release-plan": { + "type": "npm", + "name": "npm:@changesets/apply-release-plan", + "data": { + "version": "6.1.4", + "packageName": "@changesets/apply-release-plan", + "hash": "sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==" + } + }, + "npm:@changesets/assemble-release-plan": { + "type": "npm", + "name": "npm:@changesets/assemble-release-plan", + "data": { + "version": "5.2.4", + "packageName": "@changesets/assemble-release-plan", + "hash": "sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==" + } + }, + "npm:@changesets/changelog-git": { + "type": "npm", + "name": "npm:@changesets/changelog-git", + "data": { + "version": "0.1.14", + "packageName": "@changesets/changelog-git", + "hash": "sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==" + } + }, + "npm:@changesets/cli": { + "type": "npm", + "name": "npm:@changesets/cli", + "data": { + "version": "2.26.0", + "packageName": "@changesets/cli", + "hash": "sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==" + } + }, + "npm:@changesets/config": { + "type": "npm", + "name": "npm:@changesets/config", + "data": { + "version": "2.3.1", + "packageName": "@changesets/config", + "hash": "sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==" + } + }, + "npm:@changesets/errors": { + "type": "npm", + "name": "npm:@changesets/errors", + "data": { + "version": "0.1.4", + "packageName": "@changesets/errors", + "hash": "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==" + } + }, + "npm:@changesets/get-dependents-graph": { + "type": "npm", + "name": "npm:@changesets/get-dependents-graph", + "data": { + "version": "1.3.6", + "packageName": "@changesets/get-dependents-graph", + "hash": "sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==" + } + }, + "npm:@changesets/get-release-plan": { + "type": "npm", + "name": "npm:@changesets/get-release-plan", + "data": { + "version": "3.0.17", + "packageName": "@changesets/get-release-plan", + "hash": "sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==" + } + }, + "npm:@changesets/get-version-range-type": { + "type": "npm", + "name": "npm:@changesets/get-version-range-type", + "data": { + "version": "0.3.2", + "packageName": "@changesets/get-version-range-type", + "hash": "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==" + } + }, + "npm:@changesets/git": { + "type": "npm", + "name": "npm:@changesets/git", + "data": { + "version": "2.0.0", + "packageName": "@changesets/git", + "hash": "sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==" + } + }, + "npm:@changesets/logger": { + "type": "npm", + "name": "npm:@changesets/logger", + "data": { + "version": "0.0.5", + "packageName": "@changesets/logger", + "hash": "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==" + } + }, + "npm:@changesets/parse": { + "type": "npm", + "name": "npm:@changesets/parse", + "data": { + "version": "0.3.16", + "packageName": "@changesets/parse", + "hash": "sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==" + } + }, + "npm:@changesets/pre": { + "type": "npm", + "name": "npm:@changesets/pre", + "data": { + "version": "1.0.14", + "packageName": "@changesets/pre", + "hash": "sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==" + } + }, + "npm:@changesets/read": { + "type": "npm", + "name": "npm:@changesets/read", + "data": { + "version": "0.5.9", + "packageName": "@changesets/read", + "hash": "sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==" + } + }, + "npm:@changesets/types@4.1.0": { + "type": "npm", + "name": "npm:@changesets/types@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "@changesets/types", + "hash": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==" + } + }, + "npm:@changesets/types": { + "type": "npm", + "name": "npm:@changesets/types", + "data": { + "version": "5.2.1", + "packageName": "@changesets/types", + "hash": "sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==" + } + }, + "npm:@changesets/write": { + "type": "npm", + "name": "npm:@changesets/write", + "data": { + "version": "0.2.3", + "packageName": "@changesets/write", + "hash": "sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==" + } + }, + "npm:@chevrotain/cst-dts-gen": { + "type": "npm", + "name": "npm:@chevrotain/cst-dts-gen", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/cst-dts-gen", + "hash": "sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==" + } + }, + "npm:@chevrotain/gast": { + "type": "npm", + "name": "npm:@chevrotain/gast", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/gast", + "hash": "sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==" + } + }, + "npm:@chevrotain/types": { + "type": "npm", + "name": "npm:@chevrotain/types", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/types", + "hash": "sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==" + } + }, + "npm:@chevrotain/utils": { + "type": "npm", + "name": "npm:@chevrotain/utils", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/utils", + "hash": "sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.6.0", + "packageName": "@colors/colors", + "hash": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" + } + }, + "npm:@commitlint/cli": { + "type": "npm", + "name": "npm:@commitlint/cli", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/cli", + "hash": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==" + } + }, + "npm:@commitlint/config-conventional": { + "type": "npm", + "name": "npm:@commitlint/config-conventional", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/config-conventional", + "hash": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==" + } + }, + "npm:@commitlint/config-validator": { + "type": "npm", + "name": "npm:@commitlint/config-validator", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/config-validator", + "hash": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==" + } + }, + "npm:@commitlint/ensure": { + "type": "npm", + "name": "npm:@commitlint/ensure", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/ensure", + "hash": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==" + } + }, + "npm:@commitlint/execute-rule": { + "type": "npm", + "name": "npm:@commitlint/execute-rule", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/execute-rule", + "hash": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==" + } + }, + "npm:@commitlint/execute-rule@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/execute-rule@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/execute-rule", + "hash": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==" + } + }, + "npm:@commitlint/format": { + "type": "npm", + "name": "npm:@commitlint/format", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/format", + "hash": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==" + } + }, + "npm:@commitlint/is-ignored": { + "type": "npm", + "name": "npm:@commitlint/is-ignored", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/is-ignored", + "hash": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==" + } + }, + "npm:@commitlint/lint": { + "type": "npm", + "name": "npm:@commitlint/lint", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/lint", + "hash": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==" + } + }, + "npm:@commitlint/load": { + "type": "npm", + "name": "npm:@commitlint/load", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/load", + "hash": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==" + } + }, + "npm:@commitlint/load@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/load@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/load", + "hash": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==" + } + }, + "npm:@commitlint/message": { + "type": "npm", + "name": "npm:@commitlint/message", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/message", + "hash": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==" + } + }, + "npm:@commitlint/parse": { + "type": "npm", + "name": "npm:@commitlint/parse", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/parse", + "hash": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==" + } + }, + "npm:@commitlint/read": { + "type": "npm", + "name": "npm:@commitlint/read", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/read", + "hash": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==" + } + }, + "npm:@commitlint/resolve-extends": { + "type": "npm", + "name": "npm:@commitlint/resolve-extends", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/resolve-extends", + "hash": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==" + } + }, + "npm:@commitlint/resolve-extends@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/resolve-extends@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/resolve-extends", + "hash": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==" + } + }, + "npm:@commitlint/rules": { + "type": "npm", + "name": "npm:@commitlint/rules", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/rules", + "hash": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==" + } + }, + "npm:@commitlint/to-lines": { + "type": "npm", + "name": "npm:@commitlint/to-lines", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/to-lines", + "hash": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==" + } + }, + "npm:@commitlint/top-level": { + "type": "npm", + "name": "npm:@commitlint/top-level", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/top-level", + "hash": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==" + } + }, + "npm:@commitlint/types": { + "type": "npm", + "name": "npm:@commitlint/types", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/types", + "hash": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==" + } + }, + "npm:@commitlint/types@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/types@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/types", + "hash": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==" + } + }, + "npm:@dabh/diagnostics": { + "type": "npm", + "name": "npm:@dabh/diagnostics", + "data": { + "version": "2.0.3", + "packageName": "@dabh/diagnostics", + "hash": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==" + } + }, + "npm:@emnapi/core": { + "type": "npm", + "name": "npm:@emnapi/core", + "data": { + "version": "1.3.0", + "packageName": "@emnapi/core", + "hash": "sha512-9hRqVlhwqBqCoToZ3hFcNVqL+uyHV06Y47ax4UB8L6XgVRqYz7MFnfessojo6+5TK89pKwJnpophwjTMOeKI9Q==" + } + }, + "npm:@emnapi/runtime": { + "type": "npm", + "name": "npm:@emnapi/runtime", + "data": { + "version": "1.3.0", + "packageName": "@emnapi/runtime", + "hash": "sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==" + } + }, + "npm:@emnapi/wasi-threads": { + "type": "npm", + "name": "npm:@emnapi/wasi-threads", + "data": { + "version": "1.0.1", + "packageName": "@emnapi/wasi-threads", + "hash": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==" + } + }, + "npm:@esbuild/android-arm64": { + "type": "npm", + "name": "npm:@esbuild/android-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==" + } + }, + "npm:@esbuild/android-arm": { + "type": "npm", + "name": "npm:@esbuild/android-arm", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/android-arm", + "hash": "sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==" + } + }, + "npm:@esbuild/android-x64": { + "type": "npm", + "name": "npm:@esbuild/android-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/android-x64", + "hash": "sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==" + } + }, + "npm:@esbuild/darwin-arm64": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==" + } + }, + "npm:@esbuild/darwin-x64": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==" + } + }, + "npm:@esbuild/freebsd-arm64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==" + } + }, + "npm:@esbuild/freebsd-x64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==" + } + }, + "npm:@esbuild/linux-arm64": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==" + } + }, + "npm:@esbuild/linux-arm": { + "type": "npm", + "name": "npm:@esbuild/linux-arm", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==" + } + }, + "npm:@esbuild/linux-ia32": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==" + } + }, + "npm:@esbuild/linux-loong64": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==" + } + }, + "npm:@esbuild/linux-mips64el": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==" + } + }, + "npm:@esbuild/linux-ppc64": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==" + } + }, + "npm:@esbuild/linux-riscv64": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==" + } + }, + "npm:@esbuild/linux-s390x": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==" + } + }, + "npm:@esbuild/netbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==" + } + }, + "npm:@esbuild/openbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==" + } + }, + "npm:@esbuild/sunos-x64": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==" + } + }, + "npm:@esbuild/win32-arm64": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==" + } + }, + "npm:@esbuild/win32-ia32": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "0.3.0", + "packageName": "@eslint/eslintrc", + "hash": "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==" + } + }, + "npm:@formatjs/cli": { + "type": "npm", + "name": "npm:@formatjs/cli", + "data": { + "version": "2.15.0", + "packageName": "@formatjs/cli", + "hash": "sha512-Hv7Z3xeGcgTpn1jA1/x7tc9UYbF9Udn/77xRf7E22Vn1mGJM/DftVqnpgLeNpd0d3xSftYw+rhaShNO19BsT6A==" + } + }, + "npm:@formatjs/ecma402-abstract": { + "type": "npm", + "name": "npm:@formatjs/ecma402-abstract", + "data": { + "version": "1.5.0", + "packageName": "@formatjs/ecma402-abstract", + "hash": "sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==" + } + }, + "npm:@formatjs/ts-transformer": { + "type": "npm", + "name": "npm:@formatjs/ts-transformer", + "data": { + "version": "2.13.0", + "packageName": "@formatjs/ts-transformer", + "hash": "sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==" + } + }, + "npm:@gar/promisify": { + "type": "npm", + "name": "npm:@gar/promisify", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@hutson/parse-repository-url": { + "type": "npm", + "name": "npm:@hutson/parse-repository-url", + "data": { + "version": "3.0.2", + "packageName": "@hutson/parse-repository-url", + "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "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-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "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@25.5.0": { + "type": "npm", + "name": "npm:@jest/types@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "@jest/types", + "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" + } + }, + "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.5", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.2", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.2.1", + "packageName": "@jridgewell/set-array", + "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.6", + "packageName": "@jridgewell/source-map", + "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.5.0", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.25", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" + } + }, + "npm:@jsdevtools/ono": { + "type": "npm", + "name": "npm:@jsdevtools/ono", + "data": { + "version": "7.1.3", + "packageName": "@jsdevtools/ono", + "hash": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" + } + }, + "npm:@kwsites/file-exists": { + "type": "npm", + "name": "npm:@kwsites/file-exists", + "data": { + "version": "1.1.1", + "packageName": "@kwsites/file-exists", + "hash": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==" + } + }, + "npm:@kwsites/promise-deferred": { + "type": "npm", + "name": "npm:@kwsites/promise-deferred", + "data": { + "version": "1.1.1", + "packageName": "@kwsites/promise-deferred", + "hash": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==" + } + }, + "npm:@lerna/child-process": { + "type": "npm", + "name": "npm:@lerna/child-process", + "data": { + "version": "7.4.2", + "packageName": "@lerna/child-process", + "hash": "sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==" + } + }, + "npm:@lerna/create": { + "type": "npm", + "name": "npm:@lerna/create", + "data": { + "version": "7.4.2", + "packageName": "@lerna/create", + "hash": "sha512-1wplFbQ52K8E/unnqB0Tq39Z4e+NEoNrpovEnl6GpsTUrC6WDp8+w0Le2uCBV0hXyemxChduCkLz4/y1H1wTeg==" + } + }, + "npm:@manypkg/find-root": { + "type": "npm", + "name": "npm:@manypkg/find-root", + "data": { + "version": "1.1.0", + "packageName": "@manypkg/find-root", + "hash": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==" + } + }, + "npm:@manypkg/get-packages": { + "type": "npm", + "name": "npm:@manypkg/get-packages", + "data": { + "version": "1.1.3", + "packageName": "@manypkg/get-packages", + "hash": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==" + } + }, + "npm:@microsoft/applicationinsights-web-snippet": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-web-snippet", + "data": { + "version": "1.2.1", + "packageName": "@microsoft/applicationinsights-web-snippet", + "hash": "sha512-+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==" + } + }, + "npm:@napi-rs/wasm-runtime": { + "type": "npm", + "name": "npm:@napi-rs/wasm-runtime", + "data": { + "version": "0.2.4", + "packageName": "@napi-rs/wasm-runtime", + "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" + } + }, + "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@2.1.2": { + "type": "npm", + "name": "npm:@npmcli/fs@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "@npmcli/fs", + "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.1", + "packageName": "@npmcli/fs", + "hash": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==" + } + }, + "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/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.1.0", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==" + } + }, + "npm:@npmcli/move-file": { + "type": "npm", + "name": "npm:@npmcli/move-file", + "data": { + "version": "2.0.1", + "packageName": "@npmcli/move-file", + "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" + } + }, + "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/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" + } + }, + "npm:@nrwl/tao@16.10.0": { + "type": "npm", + "name": "npm:@nrwl/tao@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/tao", + "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "19.8.4", + "packageName": "@nrwl/tao", + "hash": "sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nx/devkit", + "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" + } + }, + "npm:@nx/nx-darwin-arm64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ==" + } + }, + "npm:@nx/nx-darwin-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew==" + } + }, + "npm:@nx/nx-freebsd-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-JB4tAuZBCF0yqSnKF3pHXa0b7LA3ebi3Bw08QmMr//ON4aU+eXURGBuj9XvULD2prY+gpBrvf+MsG1XJAHL6Zg==" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ==" + } + }, + "npm:@nx/nx-win32-x64-msvc@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "3.0.4", + "packageName": "@octokit/auth-token", + "hash": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "4.2.4", + "packageName": "@octokit/core", + "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "7.0.6", + "packageName": "@octokit/endpoint", + "hash": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "5.0.6", + "packageName": "@octokit/graphql", + "hash": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "18.1.1", + "packageName": "@octokit/openapi-types", + "hash": "sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==" + } + }, + "npm:@octokit/plugin-enterprise-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-enterprise-rest", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-enterprise-rest", + "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "6.1.2", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" + } + }, + "npm:@octokit/plugin-request-log": { + "type": "npm", + "name": "npm:@octokit/plugin-request-log", + "data": { + "version": "1.0.4", + "packageName": "@octokit/plugin-request-log", + "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods", + "data": { + "version": "7.2.3", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "3.0.3", + "packageName": "@octokit/request-error", + "hash": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "6.2.8", + "packageName": "@octokit/request", + "hash": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==" + } + }, + "npm:@octokit/rest": { + "type": "npm", + "name": "npm:@octokit/rest", + "data": { + "version": "19.0.11", + "packageName": "@octokit/rest", + "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" + } + }, + "npm:@octokit/tsconfig": { + "type": "npm", + "name": "npm:@octokit/tsconfig", + "data": { + "version": "1.0.2", + "packageName": "@octokit/tsconfig", + "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" + } + }, + "npm:@octokit/types@10.0.0": { + "type": "npm", + "name": "npm:@octokit/types@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "@octokit/types", + "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "9.3.2", + "packageName": "@octokit/types", + "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" + } + }, + "npm:@opentelemetry/api-logs": { + "type": "npm", + "name": "npm:@opentelemetry/api-logs", + "data": { + "version": "0.52.1", + "packageName": "@opentelemetry/api-logs", + "hash": "sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==" + } + }, + "npm:@opentelemetry/api": { + "type": "npm", + "name": "npm:@opentelemetry/api", + "data": { + "version": "1.9.0", + "packageName": "@opentelemetry/api", + "hash": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==" + } + }, + "npm:@opentelemetry/core": { + "type": "npm", + "name": "npm:@opentelemetry/core", + "data": { + "version": "1.26.0", + "packageName": "@opentelemetry/core", + "hash": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==" + } + }, + "npm:@opentelemetry/instrumentation": { + "type": "npm", + "name": "npm:@opentelemetry/instrumentation", + "data": { + "version": "0.52.1", + "packageName": "@opentelemetry/instrumentation", + "hash": "sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==" + } + }, + "npm:@opentelemetry/resources": { + "type": "npm", + "name": "npm:@opentelemetry/resources", + "data": { + "version": "1.26.0", + "packageName": "@opentelemetry/resources", + "hash": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==" + } + }, + "npm:@opentelemetry/sdk-trace-base": { + "type": "npm", + "name": "npm:@opentelemetry/sdk-trace-base", + "data": { + "version": "1.26.0", + "packageName": "@opentelemetry/sdk-trace-base", + "hash": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==" + } + }, + "npm:@opentelemetry/semantic-conventions": { + "type": "npm", + "name": "npm:@opentelemetry/semantic-conventions", + "data": { + "version": "1.27.0", + "packageName": "@opentelemetry/semantic-conventions", + "hash": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==" + } + }, + "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:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@prettier/plugin-xml": { + "type": "npm", + "name": "npm:@prettier/plugin-xml", + "data": { + "version": "2.2.0", + "packageName": "@prettier/plugin-xml", + "hash": "sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==" + } + }, + "npm:@rtsao/scc": { + "type": "npm", + "name": "npm:@rtsao/scc", + "data": { + "version": "1.1.0", + "packageName": "@rtsao/scc", + "hash": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" + } + }, + "npm:@sap-ux/annotation-converter": { + "type": "npm", + "name": "npm:@sap-ux/annotation-converter", + "data": { + "version": "0.5.20", + "packageName": "@sap-ux/annotation-converter", + "hash": "sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==" + } + }, + "npm:@sap-ux/edmx-parser": { + "type": "npm", + "name": "npm:@sap-ux/edmx-parser", + "data": { + "version": "0.5.13", + "packageName": "@sap-ux/edmx-parser", + "hash": "sha512-V58Iul9fSSMjWs1x7CimGyfnojnYTKcutGstRN4gmz6t4ijXsXQrTMzVetDbZ3EA2UznZtzreVF/8/gXC5MK3A==" + } + }, + "npm:@sap-ux/i18n": { + "type": "npm", + "name": "npm:@sap-ux/i18n", + "data": { + "version": "0.1.0", + "packageName": "@sap-ux/i18n", + "hash": "sha512-v16e/m+DShlqQELz6/VQZ454FeHYr/JbQA20xGT62yKjuvhG1tSKHwBrss8NYT0A9Lr8XxrKZpUZghD0iqY1/A==" + } + }, + "npm:@sap-ux/project-access": { + "type": "npm", + "name": "npm:@sap-ux/project-access", + "data": { + "version": "1.25.5", + "packageName": "@sap-ux/project-access", + "hash": "sha512-ZBUneSOIoX8jRUUf+ffmD37wuIBikKOjmjfmMZ0dn6dp+HoQSSXhnObsP5//51d3stPZ27y40HOHkdOon3CmrQ==" + } + }, + "npm:@sap-ux/ui5-config": { + "type": "npm", + "name": "npm:@sap-ux/ui5-config", + "data": { + "version": "0.23.1", + "packageName": "@sap-ux/ui5-config", + "hash": "sha512-2pfA5GX+Oho1SpRKgWdIiY6tW8L812Jjr/zNiDm27hmua0GKifIUxt5CanN11MB+YAwkg0rJwHH/2aWLeoFiuA==" + } + }, + "npm:@sap-ux/vocabularies-types": { + "type": "npm", + "name": "npm:@sap-ux/vocabularies-types", + "data": { + "version": "0.10.14", + "packageName": "@sap-ux/vocabularies-types", + "hash": "sha512-PtjyRBQbjCFHE1TAXz3DXuyD46eoobAK3BmOsjS60o2dNHMU9EVL1/sbbeiB2917ZV0ARezd3C1BNEict5VXfg==" + } + }, + "npm:@sap-ux/yaml": { + "type": "npm", + "name": "npm:@sap-ux/yaml", + "data": { + "version": "0.16.0", + "packageName": "@sap-ux/yaml", + "hash": "sha512-jojo+NDZyuguUmTznj+yof2luSRarfqR2x09jRoVhS0CT2oJaAxyd60yXRtuCUFW7FbuEii+jSf+aeBU7QSPVw==" + } + }, + "npm:@sap/bas-sdk": { + "type": "npm", + "name": "npm:@sap/bas-sdk", + "data": { + "version": "3.8.9", + "packageName": "@sap/bas-sdk", + "hash": "sha512-ycYttnSTlEPjDrb0svSv0jBgqEvoekD4bNB4IxuKCu5OKk5FycwsOTgufU8CXYf1ag23wTlurN+N7c4Po6PcJQ==" + } + }, + "npm:@sap/swa-for-sapbas-vsx@1.1.9": { + "type": "npm", + "name": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "data": { + "version": "1.1.9", + "packageName": "@sap/swa-for-sapbas-vsx", + "hash": "sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==" + } + }, + "npm:@sap/swa-for-sapbas-vsx": { + "type": "npm", + "name": "npm:@sap/swa-for-sapbas-vsx", + "data": { + "version": "2.0.7", + "packageName": "@sap/swa-for-sapbas-vsx", + "hash": "sha512-EPV6cj5AdCSUp9FLHqKw+nochB5tOjzV840+0pQ1ebEPdzqaQ+e3RjFjqfIrBEZn5yD3EiLPR/3qYTDBh1MarQ==" + } + }, + "npm:@sigstore/bundle": { + "type": "npm", + "name": "npm:@sigstore/bundle", + "data": { + "version": "1.1.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==" + } + }, + "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": "1.0.0", + "packageName": "@sigstore/sign", + "hash": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.3", + "packageName": "@sigstore/tuf", + "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" + } + }, + "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:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.1", + "packageName": "@sinonjs/commons", + "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" + } + }, + "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:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "1.1.2", + "packageName": "@tootallnate/once", + "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + } + }, + "npm:@tootallnate/once@2.0.0": { + "type": "npm", + "name": "npm:@tootallnate/once@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "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/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:@tybys/wasm-util": { + "type": "npm", + "name": "npm:@tybys/wasm-util", + "data": { + "version": "0.9.0", + "packageName": "@tybys/wasm-util", + "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" + } + }, + "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.6", + "packageName": "@types/babel__traverse", + "hash": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==" + } + }, + "npm:@types/chai": { + "type": "npm", + "name": "npm:@types/chai", + "data": { + "version": "5.0.0", + "packageName": "@types/chai", + "hash": "sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==" + } + }, + "npm:@types/conventional-commits-parser": { + "type": "npm", + "name": "npm:@types/conventional-commits-parser", + "data": { + "version": "5.0.0", + "packageName": "@types/conventional-commits-parser", + "hash": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==" + } + }, + "npm:@types/deep-freeze-strict": { + "type": "npm", + "name": "npm:@types/deep-freeze-strict", + "data": { + "version": "1.1.0", + "packageName": "@types/deep-freeze-strict", + "hash": "sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.6", + "packageName": "@types/estree", + "hash": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" + } + }, + "npm:@types/fs-extra": { + "type": "npm", + "name": "npm:@types/fs-extra", + "data": { + "version": "9.0.11", + "packageName": "@types/fs-extra", + "hash": "sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "8.1.0", + "packageName": "@types/glob", + "hash": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==" + } + }, + "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/is-ci": { + "type": "npm", + "name": "npm:@types/is-ci", + "data": { + "version": "3.0.4", + "packageName": "@types/is-ci", + "hash": "sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==" + } + }, + "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@1.1.2": { + "type": "npm", + "name": "npm:@types/istanbul-reports@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "@types/istanbul-reports", + "hash": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==" + } + }, + "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-specific-snapshot": { + "type": "npm", + "name": "npm:@types/jest-specific-snapshot", + "data": { + "version": "0.5.5", + "packageName": "@types/jest-specific-snapshot", + "hash": "sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.2.6", + "packageName": "@types/jest", + "hash": "sha512-XEUC/Tgw3uMh6Ho8GkUtQ2lPhY5Fmgyp3TdlkTJs1W9VgNxs+Ow/x3Elh8lHQKqCbZL0AubQuqWjHVT033Hhrw==" + } + }, + "npm:@types/js-yaml": { + "type": "npm", + "name": "npm:@types/js-yaml", + "data": { + "version": "4.0.5", + "packageName": "@types/js-yaml", + "hash": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==" + } + }, + "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/json-stable-stringify": { + "type": "npm", + "name": "npm:@types/json-stable-stringify", + "data": { + "version": "1.0.36", + "packageName": "@types/json-stable-stringify", + "hash": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:@types/klaw-sync": { + "type": "npm", + "name": "npm:@types/klaw-sync", + "data": { + "version": "6.0.0", + "packageName": "@types/klaw-sync", + "hash": "sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.168", + "packageName": "@types/lodash", + "hash": "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==" + } + }, + "npm:@types/loud-rejection": { + "type": "npm", + "name": "npm:@types/loud-rejection", + "data": { + "version": "2.0.0", + "packageName": "@types/loud-rejection", + "hash": "sha512-oTHISsIybJGoh3b3Ay/10csbAd2k0su7G7DGrE1QWciC+IdydPm0WMw1+Gr9YMYjPiJ5poB3g5Ev73IlLoavLw==" + } + }, + "npm:@types/minimatch@3.0.5": { + "type": "npm", + "name": "npm:@types/minimatch@3.0.5", + "data": { + "version": "3.0.5", + "packageName": "@types/minimatch", + "hash": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "5.1.2", + "packageName": "@types/minimatch", + "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + } + }, + "npm:@types/minimist": { + "type": "npm", + "name": "npm:@types/minimist", + "data": { + "version": "1.2.5", + "packageName": "@types/minimist", + "hash": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==" + } + }, + "npm:@types/node-fetch": { + "type": "npm", + "name": "npm:@types/node-fetch", + "data": { + "version": "2.5.10", + "packageName": "@types/node-fetch", + "hash": "sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==" + } + }, + "npm:@types/node@12.20.55": { + "type": "npm", + "name": "npm:@types/node@12.20.55", + "data": { + "version": "12.20.55", + "packageName": "@types/node", + "hash": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" + } + }, + "npm:@types/node@14.18.63": { + "type": "npm", + "name": "npm:@types/node@14.18.63", + "data": { + "version": "14.18.63", + "packageName": "@types/node", + "hash": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.11.9", + "packageName": "@types/node", + "hash": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" + } + }, + "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/prettier@1.19.1": { + "type": "npm", + "name": "npm:@types/prettier@1.19.1", + "data": { + "version": "1.19.1", + "packageName": "@types/prettier", + "hash": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==" + } + }, + "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/rimraf": { + "type": "npm", + "name": "npm:@types/rimraf", + "data": { + "version": "3.0.0", + "packageName": "@types/rimraf", + "hash": "sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==" + } + }, + "npm:@types/semver@6.2.7": { + "type": "npm", + "name": "npm:@types/semver@6.2.7", + "data": { + "version": "6.2.7", + "packageName": "@types/semver", + "hash": "sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.3.12", + "packageName": "@types/semver", + "hash": "sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==" + } + }, + "npm:@types/shimmer": { + "type": "npm", + "name": "npm:@types/shimmer", + "data": { + "version": "1.2.0", + "packageName": "@types/shimmer", + "hash": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==" + } + }, + "npm:@types/sinon-chai": { + "type": "npm", + "name": "npm:@types/sinon-chai", + "data": { + "version": "3.2.5", + "packageName": "@types/sinon-chai", + "hash": "sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==" + } + }, + "npm:@types/sinon": { + "type": "npm", + "name": "npm:@types/sinon", + "data": { + "version": "9.0.10", + "packageName": "@types/sinon", + "hash": "sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.5", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "1.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" + } + }, + "npm:@types/stack-utils@2.0.3": { + "type": "npm", + "name": "npm:@types/stack-utils@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "@types/stack-utils", + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + } + }, + "npm:@types/tmp": { + "type": "npm", + "name": "npm:@types/tmp", + "data": { + "version": "0.2.0", + "packageName": "@types/tmp", + "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" + } + }, + "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/triple-beam": { + "type": "npm", + "name": "npm:@types/triple-beam", + "data": { + "version": "1.3.5", + "packageName": "@types/triple-beam", + "hash": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" + } + }, + "npm:@types/vscode": { + "type": "npm", + "name": "npm:@types/vscode", + "data": { + "version": "1.47.0", + "packageName": "@types/vscode", + "hash": "sha512-nJA37ykkz9FYA0ZOQUSc3OZnhuzEW2vUhUEo4MiduUo82jGwwcLfyvmgd/Q7b0WrZAAceojGhZybg319L24bTA==" + } + }, + "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/yargs@15.0.19": { + "type": "npm", + "name": "npm:@types/yargs@15.0.19", + "data": { + "version": "15.0.19", + "packageName": "@types/yargs", + "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.33", + "packageName": "@types/yargs", + "hash": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==" + } + }, + "npm:@typescript-eslint/experimental-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/experimental-utils", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/experimental-utils", + "hash": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==" + } + }, + "npm:@typescript-eslint/scope-manager@4.14.0": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@4.14.0", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A==" + } + }, + "npm:@typescript-eslint/types@4.33.0": { + "type": "npm", + "name": "npm:@typescript-eslint/types@4.33.0", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==" + } + }, + "npm:@typescript-eslint/typescript-estree@4.33.0": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@4.33.0", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA==" + } + }, + "npm:@typescript-eslint/visitor-keys@4.33.0": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@4.33.0", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==" + } + }, + "npm:@vscode-logging/logger": { + "type": "npm", + "name": "npm:@vscode-logging/logger", + "data": { + "version": "1.2.2", + "packageName": "@vscode-logging/logger", + "hash": "sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA==" + } + }, + "npm:@vscode-logging/types": { + "type": "npm", + "name": "npm:@vscode-logging/types", + "data": { + "version": "0.1.4", + "packageName": "@vscode-logging/types", + "hash": "sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==" + } + }, + "npm:@vue/compiler-core": { + "type": "npm", + "name": "npm:@vue/compiler-core", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-core", + "hash": "sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==" + } + }, + "npm:@vue/compiler-dom": { + "type": "npm", + "name": "npm:@vue/compiler-dom", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-dom", + "hash": "sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==" + } + }, + "npm:@vue/compiler-sfc": { + "type": "npm", + "name": "npm:@vue/compiler-sfc", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-sfc", + "hash": "sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==" + } + }, + "npm:@vue/compiler-ssr": { + "type": "npm", + "name": "npm:@vue/compiler-ssr", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-ssr", + "hash": "sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==" + } + }, + "npm:@vue/shared": { + "type": "npm", + "name": "npm:@vue/shared", + "data": { + "version": "3.5.11", + "packageName": "@vue/shared", + "hash": "sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==" + } + }, + "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.12.1", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" + } + }, + "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.12.1", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==" + } + }, + "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.12.1", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==" + } + }, + "npm:@xml-tools/ast-position": { + "type": "npm", + "name": "npm:@xml-tools/ast-position", + "data": { + "version": "2.0.2", + "packageName": "@xml-tools/ast-position", + "hash": "sha512-SuZrlXPJICF/mtcjPe8Yq5gTX6XaLyWACQyeVG6X+dMuHWiZ5ckLvlMXs5SZg9Xxw21d3Q/P1MFyM33HQPzkNg==" + } + }, + "npm:@xml-tools/ast": { + "type": "npm", + "name": "npm:@xml-tools/ast", + "data": { + "version": "5.0.0", + "packageName": "@xml-tools/ast", + "hash": "sha512-NLMBbvW1S6bG+pHvPfQeM3ci+le9LexuA4E+obqoRpTWqlJSQGiPKxq8p+HauQmdlF4UC9GUIGsa+9FNFefKyg==" + } + }, + "npm:@xml-tools/common": { + "type": "npm", + "name": "npm:@xml-tools/common", + "data": { + "version": "0.1.2", + "packageName": "@xml-tools/common", + "hash": "sha512-5U0CbB3u5WDRKX+oPjHEm6ZkJk8z5LZMpEI6uzBzcnP+3dIxahCF90lhwljQ/rPVSLMLxLfv72xru6RbePeLWA==" + } + }, + "npm:@xml-tools/content-assist": { + "type": "npm", + "name": "npm:@xml-tools/content-assist", + "data": { + "version": "3.1.7", + "packageName": "@xml-tools/content-assist", + "hash": "sha512-qkOSsQt3arJANrJnypXmLzXaCeFX0qNCZDvrNue0LDhWP+MbGMJO50Vh5FLYCQUCzDFHIzi8T53abCkbO1e3ug==" + } + }, + "npm:@xml-tools/parser@1.0.11": { + "type": "npm", + "name": "npm:@xml-tools/parser@1.0.11", + "data": { + "version": "1.0.11", + "packageName": "@xml-tools/parser", + "hash": "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==" + } + }, + "npm:@xml-tools/parser": { + "type": "npm", + "name": "npm:@xml-tools/parser", + "data": { + "version": "1.0.7", + "packageName": "@xml-tools/parser", + "hash": "sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ==" + } + }, + "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@0.0.6": { + "type": "npm", + "name": "npm:@zkochan/js-yaml@0.0.6", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.7", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "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:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-attributes": { + "type": "npm", + "name": "npm:acorn-import-attributes", + "data": { + "version": "1.9.5", + "packageName": "acorn-import-attributes", + "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" + } + }, + "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.4", + "packageName": "acorn-walk", + "hash": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "7.4.1", + "packageName": "acorn", + "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + }, + "npm:acorn@8.12.1": { + "type": "npm", + "name": "npm:acorn@8.12.1", + "data": { + "version": "8.12.1", + "packageName": "acorn", + "hash": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==" + } + }, + "npm:add-stream": { + "type": "npm", + "name": "npm:add-stream", + "data": { + "version": "1.0.0", + "packageName": "add-stream", + "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.5.0", + "packageName": "agentkeepalive", + "hash": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.3", + "packageName": "ajv", + "hash": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==" + } + }, + "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@8.17.1": { + "type": "npm", + "name": "npm:ajv@8.17.1", + "data": { + "version": "8.17.1", + "packageName": "ajv", + "hash": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==" + } + }, + "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-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex@6.1.0": { + "type": "npm", + "name": "npm:ansi-regex@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "ansi-regex", + "hash": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + } + }, + "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: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:any-promise": { + "type": "npm", + "name": "npm:any-promise", + "data": { + "version": "1.3.0", + "packageName": "any-promise", + "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:append-transform": { + "type": "npm", + "name": "npm:append-transform", + "data": { + "version": "2.0.0", + "packageName": "append-transform", + "hash": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==" + } + }, + "npm:applicationinsights": { + "type": "npm", + "name": "npm:applicationinsights", + "data": { + "version": "2.9.2", + "packageName": "applicationinsights", + "hash": "sha512-wlDiD7v0BQNM8oNzsf9C836R5ze25u+CuCEZsbA5xMIXYYBxkqkWE/mo9GFJM7rsKaiGqpxEwWmePHKD2Lwy2w==" + } + }, + "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:archy": { + "type": "npm", + "name": "npm:archy", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==" + } + }, + "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:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.1", + "packageName": "array-buffer-byte-length", + "hash": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==" + } + }, + "npm:array-differ": { + "type": "npm", + "name": "npm:array-differ", + "data": { + "version": "3.0.0", + "packageName": "array-differ", + "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + } + }, + "npm:array-find-index": { + "type": "npm", + "name": "npm:array-find-index", + "data": { + "version": "1.0.2", + "packageName": "array-find-index", + "hash": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==" + } + }, + "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.8", + "packageName": "array-includes", + "hash": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==" + } + }, + "npm:array-timsort": { + "type": "npm", + "name": "npm:array-timsort", + "data": { + "version": "1.0.3", + "packageName": "array-timsort", + "hash": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" + } + }, + "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:array.prototype.findlastindex": { + "type": "npm", + "name": "npm:array.prototype.findlastindex", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.findlastindex", + "hash": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flat", + "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flatmap", + "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.3", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==" + } + }, + "npm:arrify@1.0.1": { + "type": "npm", + "name": "npm:arrify@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "arrify", + "hash": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" + } + }, + "npm:arrify": { + "type": "npm", + "name": "npm:arrify", + "data": { + "version": "2.0.1", + "packageName": "arrify", + "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + } + }, + "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-never": { + "type": "npm", + "name": "npm:assert-never", + "data": { + "version": "1.2.1", + "packageName": "assert-never", + "hash": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + } + }, + "npm:assertion-error": { + "type": "npm", + "name": "npm:assertion-error", + "data": { + "version": "1.1.0", + "packageName": "assertion-error", + "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async-hook-jl": { + "type": "npm", + "name": "npm:async-hook-jl", + "data": { + "version": "1.7.6", + "packageName": "async-hook-jl", + "hash": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==" + } + }, + "npm:async-listener": { + "type": "npm", + "name": "npm:async-listener", + "data": { + "version": "0.6.10", + "packageName": "async-listener", + "hash": "sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.5", + "packageName": "async", + "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + } + }, + "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:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.7", + "packageName": "available-typed-arrays", + "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" + } + }, + "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.13.2", + "packageName": "aws4", + "hash": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.6.1", + "packageName": "axios", + "hash": "sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==" + } + }, + "npm:axios@1.7.4": { + "type": "npm", + "name": "npm:axios@1.7.4", + "data": { + "version": "1.7.4", + "packageName": "axios", + "hash": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==" + } + }, + "npm:axios@1.7.7": { + "type": "npm", + "name": "npm:axios@1.7.7", + "data": { + "version": "1.7.7", + "packageName": "axios", + "hash": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==" + } + }, + "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-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.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.1.0", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==" + } + }, + "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:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" + } + }, + "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:better-path-resolve": { + "type": "npm", + "name": "npm:better-path-resolve", + "data": { + "version": "1.0.0", + "packageName": "better-path-resolve", + "hash": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==" + } + }, + "npm:big-integer": { + "type": "npm", + "name": "npm:big-integer", + "data": { + "version": "1.6.52", + "packageName": "big-integer", + "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:binary": { + "type": "npm", + "name": "npm:binary", + "data": { + "version": "0.3.0", + "packageName": "binary", + "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" + } + }, + "npm:binaryextensions": { + "type": "npm", + "name": "npm:binaryextensions", + "data": { + "version": "4.19.0", + "packageName": "binaryextensions", + "hash": "sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.4.7", + "packageName": "bluebird", + "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "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:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:breakword": { + "type": "npm", + "name": "npm:breakword", + "data": { + "version": "1.0.6", + "packageName": "breakword", + "hash": "sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==" + } + }, + "npm:browser-resolve": { + "type": "npm", + "name": "npm:browser-resolve", + "data": { + "version": "1.11.3", + "packageName": "browser-resolve", + "hash": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.24.0", + "packageName": "browserslist", + "hash": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==" + } + }, + "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:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer-indexof-polyfill": { + "type": "npm", + "name": "npm:buffer-indexof-polyfill", + "data": { + "version": "1.0.2", + "packageName": "buffer-indexof-polyfill", + "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:buffers": { + "type": "npm", + "name": "npm:buffers", + "data": { + "version": "0.1.1", + "packageName": "buffers", + "hash": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==" + } + }, + "npm:builtins@1.0.3": { + "type": "npm", + "name": "npm:builtins@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.1.0", + "packageName": "builtins", + "hash": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==" + } + }, + "npm:byte-size": { + "type": "npm", + "name": "npm:byte-size", + "data": { + "version": "8.1.1", + "packageName": "byte-size", + "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" + } + }, + "npm:cacache@16.1.3": { + "type": "npm", + "name": "npm:cacache@16.1.3", + "data": { + "version": "16.1.3", + "packageName": "cacache", + "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "17.1.4", + "packageName": "cacache", + "hash": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.3.0", + "packageName": "cachedir", + "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" + } + }, + "npm:caching-transform": { + "type": "npm", + "name": "npm:caching-transform", + "data": { + "version": "4.0.0", + "packageName": "caching-transform", + "hash": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.7", + "packageName": "call-bind", + "hash": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==" + } + }, + "npm:call-me-maybe": { + "type": "npm", + "name": "npm:call-me-maybe", + "data": { + "version": "1.0.2", + "packageName": "call-me-maybe", + "hash": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase-keys": { + "type": "npm", + "name": "npm:camelcase-keys", + "data": { + "version": "6.2.2", + "packageName": "camelcase-keys", + "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" + } + }, + "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-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001667", + "packageName": "caniuse-lite", + "hash": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + } + }, + "npm:chai": { + "type": "npm", + "name": "npm:chai", + "data": { + "version": "4.2.0", + "packageName": "chai", + "hash": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==" + } + }, + "npm:chainsaw": { + "type": "npm", + "name": "npm:chainsaw", + "data": { + "version": "0.1.0", + "packageName": "chainsaw", + "hash": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk@3.0.0": { + "type": "npm", + "name": "npm:chalk@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chalk", + "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + } + }, + "npm:chalk@4.1.0": { + "type": "npm", + "name": "npm:chalk@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "chalk", + "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + } + }, + "npm:chalk@4.1.2": { + "type": "npm", + "name": "npm:chalk@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "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: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-error": { + "type": "npm", + "name": "npm:check-error", + "data": { + "version": "1.0.3", + "packageName": "check-error", + "hash": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==" + } + }, + "npm:chevrotain@10.4.2": { + "type": "npm", + "name": "npm:chevrotain@10.4.2", + "data": { + "version": "10.4.2", + "packageName": "chevrotain", + "hash": "sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg==" + } + }, + "npm:chevrotain": { + "type": "npm", + "name": "npm:chevrotain", + "data": { + "version": "7.0.1", + "packageName": "chevrotain", + "hash": "sha512-B/44jrdw5GAzy483LEeVSgXSX0qOYM8lUd3l5+yf6Vl6OQjEUCm2BUiYbHRCIK6xCEvCLAFe1kj8uyV6+zdaVw==" + } + }, + "npm:chevrotain@7.1.1": { + "type": "npm", + "name": "npm:chevrotain@7.1.1", + "data": { + "version": "7.1.1", + "packageName": "chevrotain", + "hash": "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==" + } + }, + "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.4", + "packageName": "chrome-trace-event", + "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.9.0", + "packageName": "ci-info", + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.4.1", + "packageName": "cjs-module-lexer", + "hash": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:cli-color": { + "type": "npm", + "name": "npm:cli-color", + "data": { + "version": "2.0.3", + "packageName": "cli-color", + "hash": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==" + } + }, + "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-spinners@2.9.2": { + "type": "npm", + "name": "npm:cli-spinners@2.9.2", + "data": { + "version": "2.9.2", + "packageName": "cli-spinners", + "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" + } + }, + "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-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:cliui@6.0.0": { + "type": "npm", + "name": "npm:cliui@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cliui", + "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + } + }, + "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: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:clone-buffer": { + "type": "npm", + "name": "npm:clone-buffer", + "data": { + "version": "1.0.0", + "packageName": "clone-buffer", + "hash": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:clone-stats": { + "type": "npm", + "name": "npm:clone-stats", + "data": { + "version": "1.0.0", + "packageName": "clone-stats", + "hash": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" + } + }, + "npm:clone@1.0.4": { + "type": "npm", + "name": "npm:clone@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "2.1.2", + "packageName": "clone", + "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + } + }, + "npm:cloneable-readable": { + "type": "npm", + "name": "npm:cloneable-readable", + "data": { + "version": "1.1.3", + "packageName": "cloneable-readable", + "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" + } + }, + "npm:cls-hooked": { + "type": "npm", + "name": "npm:cls-hooked", + "data": { + "version": "4.2.2", + "packageName": "cls-hooked", + "hash": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==" + } + }, + "npm:cmd-shim": { + "type": "npm", + "name": "npm:cmd-shim", + "data": { + "version": "6.0.1", + "packageName": "cmd-shim", + "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "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: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-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-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "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-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.9.1", + "packageName": "color-string", + "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" + } + }, + "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:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "3.2.1", + "packageName": "color", + "hash": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:colorspace": { + "type": "npm", + "name": "npm:colorspace", + "data": { + "version": "1.1.4", + "packageName": "colorspace", + "hash": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==" + } + }, + "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@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:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:comment-json": { + "type": "npm", + "name": "npm:comment-json", + "data": { + "version": "4.2.5", + "packageName": "comment-json", + "hash": "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==" + } + }, + "npm:commitizen": { + "type": "npm", + "name": "npm:commitizen", + "data": { + "version": "4.3.1", + "packageName": "commitizen", + "hash": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==" + } + }, + "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: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": "2.0.0", + "packageName": "concat-stream", + "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" + } + }, + "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:continuation-local-storage": { + "type": "npm", + "name": "npm:continuation-local-storage", + "data": { + "version": "3.2.1", + "packageName": "continuation-local-storage", + "hash": "sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==" + } + }, + "npm:conventional-changelog-angular@5.0.13": { + "type": "npm", + "name": "npm:conventional-changelog-angular@5.0.13", + "data": { + "version": "5.0.13", + "packageName": "conventional-changelog-angular", + "hash": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==" + } + }, + "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-atom": { + "type": "npm", + "name": "npm:conventional-changelog-atom", + "data": { + "version": "2.0.8", + "packageName": "conventional-changelog-atom", + "hash": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==" + } + }, + "npm:conventional-changelog-cli": { + "type": "npm", + "name": "npm:conventional-changelog-cli", + "data": { + "version": "2.1.1", + "packageName": "conventional-changelog-cli", + "hash": "sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==" + } + }, + "npm:conventional-changelog-codemirror": { + "type": "npm", + "name": "npm:conventional-changelog-codemirror", + "data": { + "version": "2.0.8", + "packageName": "conventional-changelog-codemirror", + "hash": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==" + } + }, + "npm:conventional-changelog-conventionalcommits": { + "type": "npm", + "name": "npm:conventional-changelog-conventionalcommits", + "data": { + "version": "4.6.3", + "packageName": "conventional-changelog-conventionalcommits", + "hash": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==" + } + }, + "npm:conventional-changelog-core@4.2.4": { + "type": "npm", + "name": "npm:conventional-changelog-core@4.2.4", + "data": { + "version": "4.2.4", + "packageName": "conventional-changelog-core", + "hash": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==" + } + }, + "npm:conventional-changelog-core": { + "type": "npm", + "name": "npm:conventional-changelog-core", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-core", + "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" + } + }, + "npm:conventional-changelog-ember": { + "type": "npm", + "name": "npm:conventional-changelog-ember", + "data": { + "version": "2.0.9", + "packageName": "conventional-changelog-ember", + "hash": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==" + } + }, + "npm:conventional-changelog-eslint": { + "type": "npm", + "name": "npm:conventional-changelog-eslint", + "data": { + "version": "3.0.9", + "packageName": "conventional-changelog-eslint", + "hash": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==" + } + }, + "npm:conventional-changelog-express": { + "type": "npm", + "name": "npm:conventional-changelog-express", + "data": { + "version": "2.0.6", + "packageName": "conventional-changelog-express", + "hash": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==" + } + }, + "npm:conventional-changelog-jquery": { + "type": "npm", + "name": "npm:conventional-changelog-jquery", + "data": { + "version": "3.0.11", + "packageName": "conventional-changelog-jquery", + "hash": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==" + } + }, + "npm:conventional-changelog-jshint": { + "type": "npm", + "name": "npm:conventional-changelog-jshint", + "data": { + "version": "2.0.9", + "packageName": "conventional-changelog-jshint", + "hash": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==" + } + }, + "npm:conventional-changelog-preset-loader": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader", + "data": { + "version": "2.3.4", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==" + } + }, + "npm:conventional-changelog-preset-loader@3.0.0": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" + } + }, + "npm:conventional-changelog-writer@5.0.1": { + "type": "npm", + "name": "npm:conventional-changelog-writer@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "6.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" + } + }, + "npm:conventional-changelog": { + "type": "npm", + "name": "npm:conventional-changelog", + "data": { + "version": "3.1.25", + "packageName": "conventional-changelog", + "hash": "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==" + } + }, + "npm:conventional-commit-types": { + "type": "npm", + "name": "npm:conventional-commit-types", + "data": { + "version": "3.0.0", + "packageName": "conventional-commit-types", + "hash": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==" + } + }, + "npm:conventional-commits-filter@2.0.7": { + "type": "npm", + "name": "npm:conventional-commits-filter@2.0.7", + "data": { + "version": "2.0.7", + "packageName": "conventional-commits-filter", + "hash": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "3.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" + } + }, + "npm:conventional-commits-parser@3.2.4": { + "type": "npm", + "name": "npm:conventional-commits-parser@3.2.4", + "data": { + "version": "3.2.4", + "packageName": "conventional-commits-parser", + "hash": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" + } + }, + "npm:conventional-recommended-bump": { + "type": "npm", + "name": "npm:conventional-recommended-bump", + "data": { + "version": "7.0.1", + "packageName": "conventional-recommended-bump", + "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" + } + }, + "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: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:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.38.1", + "packageName": "core-js", + "hash": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==" + } + }, + "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:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:cosmiconfig-typescript-loader": { + "type": "npm", + "name": "npm:cosmiconfig-typescript-loader", + "data": { + "version": "5.0.0", + "packageName": "cosmiconfig-typescript-loader", + "hash": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==" + } + }, + "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": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:cosmiconfig@9.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" + } + }, + "npm:coveralls": { + "type": "npm", + "name": "npm:coveralls", + "data": { + "version": "3.1.0", + "packageName": "coveralls", + "hash": "sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:cross-env": { + "type": "npm", + "name": "npm:cross-env", + "data": { + "version": "7.0.3", + "packageName": "cross-env", + "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" + } + }, + "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:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "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:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:csv-generate": { + "type": "npm", + "name": "npm:csv-generate", + "data": { + "version": "3.4.3", + "packageName": "csv-generate", + "hash": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==" + } + }, + "npm:csv-parse": { + "type": "npm", + "name": "npm:csv-parse", + "data": { + "version": "4.16.3", + "packageName": "csv-parse", + "hash": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==" + } + }, + "npm:csv-stringify": { + "type": "npm", + "name": "npm:csv-stringify", + "data": { + "version": "5.6.5", + "packageName": "csv-stringify", + "hash": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==" + } + }, + "npm:csv": { + "type": "npm", + "name": "npm:csv", + "data": { + "version": "5.5.3", + "packageName": "csv", + "hash": "sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==" + } + }, + "npm:currently-unhandled": { + "type": "npm", + "name": "npm:currently-unhandled", + "data": { + "version": "0.4.1", + "packageName": "currently-unhandled", + "hash": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==" + } + }, + "npm:cz-conventional-changelog": { + "type": "npm", + "name": "npm:cz-conventional-changelog", + "data": { + "version": "3.3.0", + "packageName": "cz-conventional-changelog", + "hash": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==" + } + }, + "npm:d": { + "type": "npm", + "name": "npm:d", + "data": { + "version": "1.0.1", + "packageName": "d", + "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" + } + }, + "npm:dargs": { + "type": "npm", + "name": "npm:dargs", + "data": { + "version": "7.0.0", + "packageName": "dargs", + "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" + } + }, + "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:data-view-buffer": { + "type": "npm", + "name": "npm:data-view-buffer", + "data": { + "version": "1.0.1", + "packageName": "data-view-buffer", + "hash": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==" + } + }, + "npm:data-view-byte-length": { + "type": "npm", + "name": "npm:data-view-byte-length", + "data": { + "version": "1.0.1", + "packageName": "data-view-byte-length", + "hash": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==" + } + }, + "npm:data-view-byte-offset": { + "type": "npm", + "name": "npm:data-view-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "data-view-byte-offset", + "hash": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==" + } + }, + "npm:date-format": { + "type": "npm", + "name": "npm:date-format", + "data": { + "version": "2.1.0", + "packageName": "date-format", + "hash": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==" + } + }, + "npm:dateformat": { + "type": "npm", + "name": "npm:dateformat", + "data": { + "version": "3.0.3", + "packageName": "dateformat", + "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + } + }, + "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@4.3.4": { + "type": "npm", + "name": "npm:debug@4.3.4", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.7", + "packageName": "debug", + "hash": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==" + } + }, + "npm:decamelize-keys": { + "type": "npm", + "name": "npm:decamelize-keys", + "data": { + "version": "1.1.1", + "packageName": "decamelize-keys", + "hash": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + } + }, + "npm:dedent@1.5.3": { + "type": "npm", + "name": "npm:dedent@1.5.3", + "data": { + "version": "1.5.3", + "packageName": "dedent", + "hash": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==" + } + }, + "npm:deep-eql": { + "type": "npm", + "name": "npm:deep-eql", + "data": { + "version": "3.0.1", + "packageName": "deep-eql", + "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" + } + }, + "npm:deep-equal-in-any-order": { + "type": "npm", + "name": "npm:deep-equal-in-any-order", + "data": { + "version": "1.0.28", + "packageName": "deep-equal-in-any-order", + "hash": "sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ==" + } + }, + "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-freeze-strict": { + "type": "npm", + "name": "npm:deep-freeze-strict", + "data": { + "version": "1.1.1", + "packageName": "deep-freeze-strict", + "hash": "sha512-QemROZMM2IvhAcCFvahdX2Vbm4S/txeq5rFYU9fh4mQP79WTMW5c/HkQ2ICl1zuzcDZdPZ6zarDxQeQMsVYoNA==" + } + }, + "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-require-extensions": { + "type": "npm", + "name": "npm:default-require-extensions", + "data": { + "version": "3.0.1", + "packageName": "default-require-extensions", + "hash": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.4", + "packageName": "define-data-property", + "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" + } + }, + "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:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:detect-file": { + "type": "npm", + "name": "npm:detect-file", + "data": { + "version": "1.0.0", + "packageName": "detect-file", + "hash": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==" + } + }, + "npm:detect-indent@5.0.0": { + "type": "npm", + "name": "npm:detect-indent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "detect-indent", + "hash": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==" + } + }, + "npm:detect-indent": { + "type": "npm", + "name": "npm:detect-indent", + "data": { + "version": "6.1.0", + "packageName": "detect-indent", + "hash": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:diagnostic-channel-publishers": { + "type": "npm", + "name": "npm:diagnostic-channel-publishers", + "data": { + "version": "1.0.8", + "packageName": "diagnostic-channel-publishers", + "hash": "sha512-HmSm9hXxSPxA9BaLGY98QU1zsdjeCk113KjAYGPCen1ZP6mhVaTPzHd6UYv5r21DnWANi+f+NyPOHruGT9jpqQ==" + } + }, + "npm:diagnostic-channel": { + "type": "npm", + "name": "npm:diagnostic-channel", + "data": { + "version": "1.1.1", + "packageName": "diagnostic-channel", + "hash": "sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==" + } + }, + "npm:diff-sequences@25.2.6": { + "type": "npm", + "name": "npm:diff-sequences@25.2.6", + "data": { + "version": "25.2.6", + "packageName": "diff-sequences", + "hash": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "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:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv-expand@10.0.0": { + "type": "npm", + "name": "npm:dotenv-expand@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "11.0.6", + "packageName": "dotenv-expand", + "hash": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==" + } + }, + "npm:dotenv@16.3.2": { + "type": "npm", + "name": "npm:dotenv@16.3.2", + "data": { + "version": "16.3.2", + "packageName": "dotenv", + "hash": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "16.4.5", + "packageName": "dotenv", + "hash": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "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: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.5.33", + "packageName": "electron-to-chromium", + "hash": "sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==" + } + }, + "npm:emitter-listener": { + "type": "npm", + "name": "npm:emitter-listener", + "data": { + "version": "1.1.2", + "packageName": "emitter-listener", + "hash": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "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:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:enabled": { + "type": "npm", + "name": "npm:enabled", + "data": { + "version": "2.0.0", + "packageName": "enabled", + "hash": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + } + }, + "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.17.1", + "packageName": "enhanced-resolve", + "hash": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==" + } + }, + "npm:enquirer@2.3.6": { + "type": "npm", + "name": "npm:enquirer@2.3.6", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.4.1", + "packageName": "enquirer", + "hash": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.3.0", + "packageName": "entities", + "hash": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + } + }, + "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-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:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.1.4", + "packageName": "error-stack-parser", + "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.23.3", + "packageName": "es-abstract", + "hash": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==" + } + }, + "npm:es-define-property": { + "type": "npm", + "name": "npm:es-define-property", + "data": { + "version": "1.0.0", + "packageName": "es-define-property", + "hash": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==" + } + }, + "npm:es-errors": { + "type": "npm", + "name": "npm:es-errors", + "data": { + "version": "1.3.0", + "packageName": "es-errors", + "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.5.4", + "packageName": "es-module-lexer", + "hash": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" + } + }, + "npm:es-object-atoms": { + "type": "npm", + "name": "npm:es-object-atoms", + "data": { + "version": "1.0.0", + "packageName": "es-object-atoms", + "hash": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.3", + "packageName": "es-set-tostringtag", + "hash": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.2", + "packageName": "es-shim-unscopables", + "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:es5-ext": { + "type": "npm", + "name": "npm:es5-ext", + "data": { + "version": "0.10.62", + "packageName": "es5-ext", + "hash": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==" + } + }, + "npm:es6-error": { + "type": "npm", + "name": "npm:es6-error", + "data": { + "version": "4.1.1", + "packageName": "es6-error", + "hash": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==" + } + }, + "npm:es6-iterator": { + "type": "npm", + "name": "npm:es6-iterator", + "data": { + "version": "2.0.3", + "packageName": "es6-iterator", + "hash": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==" + } + }, + "npm:es6-symbol": { + "type": "npm", + "name": "npm:es6-symbol", + "data": { + "version": "3.1.3", + "packageName": "es6-symbol", + "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" + } + }, + "npm:es6-weak-map": { + "type": "npm", + "name": "npm:es6-weak-map", + "data": { + "version": "2.0.3", + "packageName": "es6-weak-map", + "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.17.12", + "packageName": "esbuild", + "hash": "sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.2.0", + "packageName": "escalade", + "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "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:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "7.2.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.9", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" + } + }, + "npm:eslint-import-resolver-typescript": { + "type": "npm", + "name": "npm:eslint-import-resolver-typescript", + "data": { + "version": "3.6.1", + "packageName": "eslint-import-resolver-typescript", + "hash": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.12.0", + "packageName": "eslint-module-utils", + "hash": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==" + } + }, + "npm:eslint-plugin-eslint-comments": { + "type": "npm", + "name": "npm:eslint-plugin-eslint-comments", + "data": { + "version": "3.2.0", + "packageName": "eslint-plugin-eslint-comments", + "hash": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.31.0", + "packageName": "eslint-plugin-import", + "hash": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:eslint-utils@3.0.0": { + "type": "npm", + "name": "npm:eslint-utils@3.0.0", + "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": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "2.1.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "7.18.0", + "packageName": "eslint", + "hash": "sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==" + } + }, + "npm:esm": { + "type": "npm", + "name": "npm:esm", + "data": { + "version": "3.2.25", + "packageName": "esm", + "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "7.3.1", + "packageName": "espree", + "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" + } + }, + "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": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:estraverse@5.3.0": { + "type": "npm", + "name": "npm:estraverse@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "2.0.2", + "packageName": "estree-walker", + "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:event-emitter": { + "type": "npm", + "name": "npm:event-emitter", + "data": { + "version": "0.3.5", + "packageName": "event-emitter", + "hash": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==" + } + }, + "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: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.0.0", + "packageName": "execa", + "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" + } + }, + "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:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expand-tilde": { + "type": "npm", + "name": "npm:expand-tilde", + "data": { + "version": "2.0.2", + "packageName": "expand-tilde", + "hash": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==" + } + }, + "npm:expect@25.5.0": { + "type": "npm", + "name": "npm:expect@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "expect", + "hash": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==" + } + }, + "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:ext": { + "type": "npm", + "name": "npm:ext", + "data": { + "version": "1.7.0", + "packageName": "ext", + "hash": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:extendable-error": { + "type": "npm", + "name": "npm:extendable-error", + "data": { + "version": "0.1.7", + "packageName": "extendable-error", + "hash": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "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-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "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-safe-stringify": { + "type": "npm", + "name": "npm:fast-safe-stringify", + "data": { + "version": "2.0.7", + "packageName": "fast-safe-stringify", + "hash": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" + } + }, + "npm:fast-uri": { + "type": "npm", + "name": "npm:fast-uri", + "data": { + "version": "3.0.1", + "packageName": "fast-uri", + "hash": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + } + }, + "npm:fast-xml-parser": { + "type": "npm", + "name": "npm:fast-xml-parser", + "data": { + "version": "4.2.7", + "packageName": "fast-xml-parser", + "hash": "sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.16.0", + "packageName": "fastq", + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fecha": { + "type": "npm", + "name": "npm:fecha", + "data": { + "version": "4.2.3", + "packageName": "fecha", + "hash": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "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: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:fill-keys": { + "type": "npm", + "name": "npm:fill-keys", + "data": { + "version": "1.0.2", + "packageName": "fill-keys", + "hash": "sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "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-node-modules": { + "type": "npm", + "name": "npm:find-node-modules", + "data": { + "version": "2.1.3", + "packageName": "find-node-modules", + "hash": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==" + } + }, + "npm:find-root": { + "type": "npm", + "name": "npm:find-root", + "data": { + "version": "1.1.0", + "packageName": "find-root", + "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + } + }, + "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": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "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-yarn-workspace-root2": { + "type": "npm", + "name": "npm:find-yarn-workspace-root2", + "data": { + "version": "1.2.16", + "packageName": "find-yarn-workspace-root2", + "hash": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==" + } + }, + "npm:findit2": { + "type": "npm", + "name": "npm:findit2", + "data": { + "version": "2.2.3", + "packageName": "findit2", + "hash": "sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog==" + } + }, + "npm:findup-sync": { + "type": "npm", + "name": "npm:findup-sync", + "data": { + "version": "4.0.0", + "packageName": "findup-sync", + "hash": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==" + } + }, + "npm:first-chunk-stream": { + "type": "npm", + "name": "npm:first-chunk-stream", + "data": { + "version": "2.0.0", + "packageName": "first-chunk-stream", + "hash": "sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.2.0", + "packageName": "flat-cache", + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.9", + "packageName": "flatted", + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + } + }, + "npm:fn.name": { + "type": "npm", + "name": "npm:fn.name", + "data": { + "version": "1.1.0", + "packageName": "fn.name", + "hash": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.5", + "packageName": "follow-redirects", + "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + } + }, + "npm:follow-redirects@1.15.9": { + "type": "npm", + "name": "npm:follow-redirects@1.15.9", + "data": { + "version": "1.15.9", + "packageName": "follow-redirects", + "hash": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "2.0.0", + "packageName": "foreground-child", + "hash": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==" + } + }, + "npm:foreground-child@3.3.0": { + "type": "npm", + "name": "npm:foreground-child@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "foreground-child", + "hash": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + } + }, + "npm:form-data@2.3.3": { + "type": "npm", + "name": "npm:form-data@2.3.3", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "3.0.1", + "packageName": "form-data", + "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" + } + }, + "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:fromentries": { + "type": "npm", + "name": "npm:fromentries", + "data": { + "version": "1.3.2", + "packageName": "fromentries", + "hash": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==" + } + }, + "npm:front-matter": { + "type": "npm", + "name": "npm:front-matter", + "data": { + "version": "4.0.2", + "packageName": "front-matter", + "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" + } + }, + "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-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra@11.2.0": { + "type": "npm", + "name": "npm:fs-extra@11.2.0", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:fs-extra@7.0.1": { + "type": "npm", + "name": "npm:fs-extra@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "fs-extra", + "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + } + }, + "npm:fs-extra@8.1.0": { + "type": "npm", + "name": "npm:fs-extra@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "fs-extra", + "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + } + }, + "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-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" + } + }, + "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:fstream": { + "type": "npm", + "name": "npm:fstream", + "data": { + "version": "1.0.12", + "packageName": "fstream", + "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" + } + }, + "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: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: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-func-name": { + "type": "npm", + "name": "npm:get-func-name", + "data": { + "version": "2.0.2", + "packageName": "get-func-name", + "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.4", + "packageName": "get-intrinsic", + "hash": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==" + } + }, + "npm:get-own-enumerable-property-symbols": { + "type": "npm", + "name": "npm:get-own-enumerable-property-symbols", + "data": { + "version": "3.0.2", + "packageName": "get-own-enumerable-property-symbols", + "hash": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + } + }, + "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-pkg-repo": { + "type": "npm", + "name": "npm:get-pkg-repo", + "data": { + "version": "4.2.1", + "packageName": "get-pkg-repo", + "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "5.1.1", + "packageName": "get-port", + "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "8.0.0", + "packageName": "get-stdin", + "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" + } + }, + "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": "6.0.0", + "packageName": "get-stream", + "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" + } + }, + "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-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.2", + "packageName": "get-symbol-description", + "hash": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==" + } + }, + "npm:get-tsconfig": { + "type": "npm", + "name": "npm:get-tsconfig", + "data": { + "version": "4.8.1", + "packageName": "get-tsconfig", + "hash": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" + } + }, + "npm:git-raw-commits": { + "type": "npm", + "name": "npm:git-raw-commits", + "data": { + "version": "2.0.11", + "packageName": "git-raw-commits", + "hash": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==" + } + }, + "npm:git-raw-commits@3.0.0": { + "type": "npm", + "name": "npm:git-raw-commits@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "git-raw-commits", + "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" + } + }, + "npm:git-remote-origin-url": { + "type": "npm", + "name": "npm:git-remote-origin-url", + "data": { + "version": "2.0.0", + "packageName": "git-remote-origin-url", + "hash": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==" + } + }, + "npm:git-semver-tags@4.1.1": { + "type": "npm", + "name": "npm:git-semver-tags@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "git-semver-tags", + "hash": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==" + } + }, + "npm:git-semver-tags": { + "type": "npm", + "name": "npm:git-semver-tags", + "data": { + "version": "5.0.1", + "packageName": "git-semver-tags", + "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" + } + }, + "npm:git-up": { + "type": "npm", + "name": "npm:git-up", + "data": { + "version": "7.0.0", + "packageName": "git-up", + "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" + } + }, + "npm:git-url-parse": { + "type": "npm", + "name": "npm:git-url-parse", + "data": { + "version": "13.1.0", + "packageName": "git-url-parse", + "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" + } + }, + "npm:gitconfiglocal": { + "type": "npm", + "name": "npm:gitconfiglocal", + "data": { + "version": "1.0.0", + "packageName": "gitconfiglocal", + "hash": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-promise": { + "type": "npm", + "name": "npm:glob-promise", + "data": { + "version": "3.4.0", + "packageName": "glob-promise", + "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" + } + }, + "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:glob@10.4.5": { + "type": "npm", + "name": "npm:glob@10.4.5", + "data": { + "version": "10.4.5", + "packageName": "glob", + "hash": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==" + } + }, + "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": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.1.6", + "packageName": "glob", + "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + } + }, + "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@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:global-directory": { + "type": "npm", + "name": "npm:global-directory", + "data": { + "version": "4.0.1", + "packageName": "global-directory", + "hash": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "0.1.1", + "packageName": "global-dirs", + "hash": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==" + } + }, + "npm:global-modules": { + "type": "npm", + "name": "npm:global-modules", + "data": { + "version": "1.0.0", + "packageName": "global-modules", + "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" + } + }, + "npm:global-prefix": { + "type": "npm", + "name": "npm:global-prefix", + "data": { + "version": "1.0.2", + "packageName": "global-prefix", + "hash": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==" + } + }, + "npm:globals@11.12.0": { + "type": "npm", + "name": "npm:globals@11.12.0", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "12.4.0", + "packageName": "globals", + "hash": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.4", + "packageName": "globalthis", + "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "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:grapheme-splitter": { + "type": "npm", + "name": "npm:grapheme-splitter", + "data": { + "version": "1.0.4", + "packageName": "grapheme-splitter", + "hash": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.8", + "packageName": "handlebars", + "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" + } + }, + "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:hard-rejection": { + "type": "npm", + "name": "npm:hard-rejection", + "data": { + "version": "2.1.0", + "packageName": "hard-rejection", + "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + } + }, + "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-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag@4.0.0": { + "type": "npm", + "name": "npm:has-flag@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-own-prop": { + "type": "npm", + "name": "npm:has-own-prop", + "data": { + "version": "2.0.0", + "packageName": "has-own-prop", + "hash": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.2", + "packageName": "has-property-descriptors", + "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.3", + "packageName": "has-proto", + "hash": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + } + }, + "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.2", + "packageName": "has-tostringtag", + "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + } + }, + "npm:hasha": { + "type": "npm", + "name": "npm:hasha", + "data": { + "version": "5.2.2", + "packageName": "hasha", + "hash": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==" + } + }, + "npm:hasown@2.0.0": { + "type": "npm", + "name": "npm:hasown@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.2", + "packageName": "hasown", + "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" + } + }, + "npm:homedir-polyfill": { + "type": "npm", + "name": "npm:homedir-polyfill", + "data": { + "version": "1.0.3", + "packageName": "homedir-polyfill", + "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" + } + }, + "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:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:hosted-git-info@4.1.0": { + "type": "npm", + "name": "npm:hosted-git-info@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "hosted-git-info", + "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" + } + }, + "npm:hosted-git-info@6.1.1": { + "type": "npm", + "name": "npm:hosted-git-info@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "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-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-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "4.0.1", + "packageName": "http-proxy-agent", + "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" + } + }, + "npm:http-proxy-agent@5.0.0": { + "type": "npm", + "name": "npm:http-proxy-agent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.2.0", + "packageName": "http-signature", + "hash": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==" + } + }, + "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:human-id": { + "type": "npm", + "name": "npm:human-id", + "data": { + "version": "1.0.2", + "packageName": "human-id", + "hash": "sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:human-signals@2.1.0": { + "type": "npm", + "name": "npm:human-signals@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "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.1", + "packageName": "husky", + "hash": "sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==" + } + }, + "npm:i18next": { + "type": "npm", + "name": "npm:i18next", + "data": { + "version": "19.0.2", + "packageName": "i18next", + "hash": "sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "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:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "5.0.1", + "packageName": "ignore-walk", + "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" + } + }, + "npm:ignore-walk@6.0.5": { + "type": "npm", + "name": "npm:ignore-walk@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "ignore-walk", + "hash": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==" + } + }, + "npm:ignore@4.0.6": { + "type": "npm", + "name": "npm:ignore@4.0.6", + "data": { + "version": "4.0.6", + "packageName": "ignore", + "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.0", + "packageName": "ignore", + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:import-in-the-middle": { + "type": "npm", + "name": "npm:import-in-the-middle", + "data": { + "version": "1.11.2", + "packageName": "import-in-the-middle", + "hash": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==" + } + }, + "npm:import-local@3.1.0": { + "type": "npm", + "name": "npm:import-local@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.2.0", + "packageName": "import-local", + "hash": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" + } + }, + "npm:import-meta-resolve": { + "type": "npm", + "name": "npm:import-meta-resolve", + "data": { + "version": "4.1.0", + "packageName": "import-meta-resolve", + "hash": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:infer-owner": { + "type": "npm", + "name": "npm:infer-owner", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "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:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:ini@4.1.1": { + "type": "npm", + "name": "npm:ini@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ini", + "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" + } + }, + "npm:init-package-json": { + "type": "npm", + "name": "npm:init-package-json", + "data": { + "version": "5.0.0", + "packageName": "init-package-json", + "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.5", + "packageName": "inquirer", + "hash": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.7", + "packageName": "internal-slot", + "hash": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==" + } + }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "1.4.0", + "packageName": "interpret", + "hash": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + } + }, + "npm:intl-messageformat-parser": { + "type": "npm", + "name": "npm:intl-messageformat-parser", + "data": { + "version": "6.1.2", + "packageName": "intl-messageformat-parser", + "hash": "sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==" + } + }, + "npm:ip-address": { + "type": "npm", + "name": "npm:ip-address", + "data": { + "version": "9.0.5", + "packageName": "ip-address", + "hash": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.4", + "packageName": "is-array-buffer", + "hash": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-arrayish@0.3.2": { + "type": "npm", + "name": "npm:is-arrayish@0.3.2", + "data": { + "version": "0.3.2", + "packageName": "is-arrayish", + "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "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-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-core-module@2.15.1": { + "type": "npm", + "name": "npm:is-core-module@2.15.1", + "data": { + "version": "2.15.1", + "packageName": "is-core-module", + "hash": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==" + } + }, + "npm:is-data-view": { + "type": "npm", + "name": "npm:is-data-view", + "data": { + "version": "1.0.1", + "packageName": "is-data-view", + "hash": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==" + } + }, + "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-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-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-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.3", + "packageName": "is-negative-zero", + "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + } + }, + "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-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "1.0.1", + "packageName": "is-obj", + "hash": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" + } + }, + "npm:is-obj@2.0.0": { + "type": "npm", + "name": "npm:is-obj@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-object": { + "type": "npm", + "name": "npm:is-object", + "data": { + "version": "1.0.2", + "packageName": "is-object", + "hash": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" + } + }, + "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: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-plain-object@5.0.0": { + "type": "npm", + "name": "npm:is-plain-object@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "is-plain-object", + "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + }, + "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-regexp": { + "type": "npm", + "name": "npm:is-regexp", + "data": { + "version": "1.0.0", + "packageName": "is-regexp", + "hash": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.3", + "packageName": "is-shared-array-buffer", + "hash": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==" + } + }, + "npm:is-ssh": { + "type": "npm", + "name": "npm:is-ssh", + "data": { + "version": "1.4.0", + "packageName": "is-ssh", + "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.0", + "packageName": "is-stream", + "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + } + }, + "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-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-subdir": { + "type": "npm", + "name": "npm:is-subdir", + "data": { + "version": "1.2.0", + "packageName": "is-subdir", + "hash": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==" + } + }, + "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": "1.0.1", + "packageName": "is-text-path", + "hash": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.13", + "packageName": "is-typed-array", + "hash": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==" + } + }, + "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-utf8": { + "type": "npm", + "name": "npm:is-utf8", + "data": { + "version": "0.2.1", + "packageName": "is-utf8", + "hash": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + } + }, + "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-windows": { + "type": "npm", + "name": "npm:is-windows", + "data": { + "version": "1.0.2", + "packageName": "is-windows", + "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "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": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isbinaryfile": { + "type": "npm", + "name": "npm:isbinaryfile", + "data": { + "version": "4.0.10", + "packageName": "isbinaryfile", + "hash": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + } + }, + "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-hook": { + "type": "npm", + "name": "npm:istanbul-lib-hook", + "data": { + "version": "3.0.0", + "packageName": "istanbul-lib-hook", + "hash": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "4.0.3", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==" + } + }, + "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@6.0.3": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==" + } + }, + "npm:istanbul-lib-processinfo": { + "type": "npm", + "name": "npm:istanbul-lib-processinfo", + "data": { + "version": "2.0.3", + "packageName": "istanbul-lib-processinfo", + "hash": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==" + } + }, + "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.7", + "packageName": "istanbul-reports", + "hash": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "3.4.3", + "packageName": "jackspeak", + "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.7", + "packageName": "jake", + "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" + } + }, + "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: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.5.0", + "packageName": "jest-config", + "hash": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==" + } + }, + "npm:jest-config@29.7.0": { + "type": "npm", + "name": "npm:jest-config@29.7.0", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff@25.5.0": { + "type": "npm", + "name": "npm:jest-diff@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "jest-diff", + "hash": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==" + } + }, + "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.5.0", + "packageName": "jest-environment-node", + "hash": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==" + } + }, + "npm:jest-environment-node@29.7.0": { + "type": "npm", + "name": "npm:jest-environment-node@29.7.0", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-esm-transformer": { + "type": "npm", + "name": "npm:jest-esm-transformer", + "data": { + "version": "1.0.0", + "packageName": "jest-esm-transformer", + "hash": "sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==" + } + }, + "npm:jest-extended": { + "type": "npm", + "name": "npm:jest-extended", + "data": { + "version": "3.2.3", + "packageName": "jest-extended", + "hash": "sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA==" + } + }, + "npm:jest-get-type@25.2.6": { + "type": "npm", + "name": "npm:jest-get-type@25.2.6", + "data": { + "version": "25.2.6", + "packageName": "jest-get-type", + "hash": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==" + } + }, + "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-junit": { + "type": "npm", + "name": "npm:jest-junit", + "data": { + "version": "15.0.0", + "packageName": "jest-junit", + "hash": "sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==" + } + }, + "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@25.5.0": { + "type": "npm", + "name": "npm:jest-matcher-utils@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==" + } + }, + "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@25.5.0": { + "type": "npm", + "name": "npm:jest-message-util@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "jest-message-util", + "hash": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==" + } + }, + "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-regex-util@25.2.6": { + "type": "npm", + "name": "npm:jest-regex-util@25.2.6", + "data": { + "version": "25.2.6", + "packageName": "jest-regex-util", + "hash": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==" + } + }, + "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-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:jest-resolve@25.5.1": { + "type": "npm", + "name": "npm:jest-resolve@25.5.1", + "data": { + "version": "25.5.1", + "packageName": "jest-resolve", + "hash": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "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": "25.5.1", + "packageName": "jest-snapshot", + "hash": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==" + } + }, + "npm:jest-snapshot@29.7.0": { + "type": "npm", + "name": "npm:jest-snapshot@29.7.0", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-sonar": { + "type": "npm", + "name": "npm:jest-sonar", + "data": { + "version": "0.2.16", + "packageName": "jest-sonar", + "hash": "sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==" + } + }, + "npm:jest-specific-snapshot": { + "type": "npm", + "name": "npm:jest-specific-snapshot", + "data": { + "version": "3.0.0", + "packageName": "jest-specific-snapshot", + "hash": "sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==" + } + }, + "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@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:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.5.0", + "packageName": "jest", + "hash": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==" + } + }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "1.21.6", + "packageName": "jiti", + "hash": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "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:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + } + }, + "npm:jsbn@1.1.0": { + "type": "npm", + "name": "npm:jsbn@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "jsbn", + "hash": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + } + }, + "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": "3.0.2", + "packageName": "jsesc", + "hash": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" + } + }, + "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@2.3.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "3.0.2", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==" + } + }, + "npm:json-schema-ref-parser": { + "type": "npm", + "name": "npm:json-schema-ref-parser", + "data": { + "version": "9.0.9", + "packageName": "json-schema-ref-parser", + "hash": "sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==" + } + }, + "npm:json-schema-to-typescript": { + "type": "npm", + "name": "npm:json-schema-to-typescript", + "data": { + "version": "10.0.3", + "packageName": "json-schema-to-typescript", + "hash": "sha512-CKM7XZqjKhsC96RWTdczTZc5KSv1PfgwGjprf7poO0osmgKmFp2Sj10jCi96gu73naVLJtrX8x7nAf9Vq2fl2Q==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "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-stable-stringify": { + "type": "npm", + "name": "npm:json-stable-stringify", + "data": { + "version": "1.1.1", + "packageName": "json-stable-stringify", + "hash": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==" + } + }, + "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@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: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@4.0.0": { + "type": "npm", + "name": "npm:jsonfile@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonify": { + "type": "npm", + "name": "npm:jsonify", + "data": { + "version": "0.0.1", + "packageName": "jsonify", + "hash": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "1.4.2", + "packageName": "jsprim", + "hash": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:klaw-sync": { + "type": "npm", + "name": "npm:klaw-sync", + "data": { + "version": "6.0.0", + "packageName": "klaw-sync", + "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" + } + }, + "npm:kleur@3.0.3": { + "type": "npm", + "name": "npm:kleur@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:kuler": { + "type": "npm", + "name": "npm:kuler", + "data": { + "version": "2.0.0", + "packageName": "kuler", + "hash": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + } + }, + "npm:lcov-parse": { + "type": "npm", + "name": "npm:lcov-parse", + "data": { + "version": "1.0.0", + "packageName": "lcov-parse", + "hash": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==" + } + }, + "npm:lerna": { + "type": "npm", + "name": "npm:lerna", + "data": { + "version": "7.4.2", + "packageName": "lerna", + "hash": "sha512-gxavfzHfJ4JL30OvMunmlm4Anw7d7Tq6tdVHzUukLdS9nWnxCN/QB21qR+VJYp5tcyXogHKbdUEGh6qmeyzxSA==" + } + }, + "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:libnpmaccess": { + "type": "npm", + "name": "npm:libnpmaccess", + "data": { + "version": "7.0.2", + "packageName": "libnpmaccess", + "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" + } + }, + "npm:libnpmpublish": { + "type": "npm", + "name": "npm:libnpmpublish", + "data": { + "version": "7.3.0", + "packageName": "libnpmpublish", + "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" + } + }, + "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: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:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "10.5.3", + "packageName": "lint-staged", + "hash": "sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==" + } + }, + "npm:listenercount": { + "type": "npm", + "name": "npm:listenercount", + "data": { + "version": "1.0.1", + "packageName": "listenercount", + "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:load-json-file@4.0.0": { + "type": "npm", + "name": "npm:load-json-file@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "6.2.0", + "packageName": "load-json-file", + "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" + } + }, + "npm:load-yaml-file": { + "type": "npm", + "name": "npm:load-yaml-file", + "data": { + "version": "0.2.0", + "packageName": "load-yaml-file", + "hash": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "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": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "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:lodash.flattendeep": { + "type": "npm", + "name": "npm:lodash.flattendeep", + "data": { + "version": "4.4.0", + "packageName": "lodash.flattendeep", + "hash": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" + } + }, + "npm:lodash.ismatch": { + "type": "npm", + "name": "npm:lodash.ismatch", + "data": { + "version": "4.4.0", + "packageName": "lodash.ismatch", + "hash": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==" + } + }, + "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.map": { + "type": "npm", + "name": "npm:lodash.map", + "data": { + "version": "4.6.0", + "packageName": "lodash.map", + "hash": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" + } + }, + "npm:lodash.mapvalues": { + "type": "npm", + "name": "npm:lodash.mapvalues", + "data": { + "version": "4.6.0", + "packageName": "lodash.mapvalues", + "hash": "sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==" + } + }, + "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.mergewith": { + "type": "npm", + "name": "npm:lodash.mergewith", + "data": { + "version": "4.6.2", + "packageName": "lodash.mergewith", + "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + } + }, + "npm:lodash.startcase": { + "type": "npm", + "name": "npm:lodash.startcase", + "data": { + "version": "4.4.0", + "packageName": "lodash.startcase", + "hash": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==" + } + }, + "npm:lodash.truncate": { + "type": "npm", + "name": "npm:lodash.truncate", + "data": { + "version": "4.4.2", + "packageName": "lodash.truncate", + "hash": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash@4.17.15": { + "type": "npm", + "name": "npm:lodash@4.17.15", + "data": { + "version": "4.17.15", + "packageName": "lodash", + "hash": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + } + }, + "npm:lodash@4.17.20": { + "type": "npm", + "name": "npm:lodash@4.17.20", + "data": { + "version": "4.17.20", + "packageName": "lodash", + "hash": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:log-driver": { + "type": "npm", + "name": "npm:log-driver", + "data": { + "version": "1.2.7", + "packageName": "log-driver", + "hash": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==" + } + }, + "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:logform": { + "type": "npm", + "name": "npm:logform", + "data": { + "version": "2.6.0", + "packageName": "logform", + "hash": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==" + } + }, + "npm:longest": { + "type": "npm", + "name": "npm:longest", + "data": { + "version": "2.0.1", + "packageName": "longest", + "hash": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==" + } + }, + "npm:loud-rejection": { + "type": "npm", + "name": "npm:loud-rejection", + "data": { + "version": "2.2.0", + "packageName": "loud-rejection", + "hash": "sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==" + } + }, + "npm:lru-cache@10.4.3": { + "type": "npm", + "name": "npm:lru-cache@10.4.3", + "data": { + "version": "10.4.3", + "packageName": "lru-cache", + "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + }, + "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@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "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-queue": { + "type": "npm", + "name": "npm:lru-queue", + "data": { + "version": "0.1.0", + "packageName": "lru-queue", + "hash": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.11", + "packageName": "magic-string", + "hash": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==" + } + }, + "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: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-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:make-fetch-happen@10.2.1": { + "type": "npm", + "name": "npm:make-fetch-happen@10.2.1", + "data": { + "version": "10.2.1", + "packageName": "make-fetch-happen", + "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:map-obj@1.0.1": { + "type": "npm", + "name": "npm:map-obj@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "map-obj", + "hash": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==" + } + }, + "npm:map-obj": { + "type": "npm", + "name": "npm:map-obj", + "data": { + "version": "4.3.0", + "packageName": "map-obj", + "hash": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" + } + }, + "npm:matomo-tracker": { + "type": "npm", + "name": "npm:matomo-tracker", + "data": { + "version": "2.2.2", + "packageName": "matomo-tracker", + "hash": "sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ==" + } + }, + "npm:mem-fs-editor": { + "type": "npm", + "name": "npm:mem-fs-editor", + "data": { + "version": "9.4.0", + "packageName": "mem-fs-editor", + "hash": "sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==" + } + }, + "npm:mem-fs": { + "type": "npm", + "name": "npm:mem-fs", + "data": { + "version": "2.1.0", + "packageName": "mem-fs", + "hash": "sha512-55vFOT4rfJx/9uoWntNrfzEj9209rd26spsSvKsCVBfOPH001YS5IakfElhcyagieC4uL++Ry/XDcwvgxF4/zQ==" + } + }, + "npm:memoizee": { + "type": "npm", + "name": "npm:memoizee", + "data": { + "version": "0.4.15", + "packageName": "memoizee", + "hash": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==" + } + }, + "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": "6.1.1", + "packageName": "meow", + "hash": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==" + } + }, + "npm:meow@8.1.2": { + "type": "npm", + "name": "npm:meow@8.1.2", + "data": { + "version": "8.1.2", + "packageName": "meow", + "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.3", + "packageName": "merge-descriptors", + "hash": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" + } + }, + "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:merge": { + "type": "npm", + "name": "npm:merge", + "data": { + "version": "2.1.1", + "packageName": "merge", + "hash": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==" + } + }, + "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:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.1", + "packageName": "min-indent", + "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + } + }, + "npm:minimatch@3.0.5": { + "type": "npm", + "name": "npm:minimatch@3.0.5", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "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@8.0.4": { + "type": "npm", + "name": "npm:minimatch@8.0.4", + "data": { + "version": "8.0.4", + "packageName": "minimatch", + "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" + } + }, + "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@9.0.5": { + "type": "npm", + "name": "npm:minimatch@9.0.5", + "data": { + "version": "9.0.5", + "packageName": "minimatch", + "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" + } + }, + "npm:minimist-options": { + "type": "npm", + "name": "npm:minimist-options", + "data": { + "version": "4.1.0", + "packageName": "minimist-options", + "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" + } + }, + "npm:minimist@1.2.7": { + "type": "npm", + "name": "npm:minimist@1.2.7", + "data": { + "version": "1.2.7", + "packageName": "minimist", + "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "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-fetch@2.1.2": { + "type": "npm", + "name": "npm:minipass-fetch@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "minipass-fetch", + "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.5", + "packageName": "minipass-fetch", + "hash": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==" + } + }, + "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.2", + "packageName": "minipass-json-stream", + "hash": "sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==" + } + }, + "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: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@4.2.8": { + "type": "npm", + "name": "npm:minipass@4.2.8", + "data": { + "version": "4.2.8", + "packageName": "minipass", + "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minipass@7.1.2": { + "type": "npm", + "name": "npm:minipass@7.1.2", + "data": { + "version": "7.1.2", + "packageName": "minipass", + "hash": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mixme": { + "type": "npm", + "name": "npm:mixme", + "data": { + "version": "0.5.10", + "packageName": "mixme", + "hash": "sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==" + } + }, + "npm:mkdirp@0.5.6": { + "type": "npm", + "name": "npm:mkdirp@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mock-fs": { + "type": "npm", + "name": "npm:mock-fs", + "data": { + "version": "5.2.0", + "packageName": "mock-fs", + "hash": "sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw==" + } + }, + "npm:modify-values": { + "type": "npm", + "name": "npm:modify-values", + "data": { + "version": "1.0.1", + "packageName": "modify-values", + "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" + } + }, + "npm:module-details-from-path": { + "type": "npm", + "name": "npm:module-details-from-path", + "data": { + "version": "1.0.3", + "packageName": "module-details-from-path", + "hash": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==" + } + }, + "npm:module-not-found-error": { + "type": "npm", + "name": "npm:module-not-found-error", + "data": { + "version": "1.0.1", + "packageName": "module-not-found-error", + "hash": "sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==" + } + }, + "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": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:multimatch": { + "type": "npm", + "name": "npm:multimatch", + "data": { + "version": "5.0.0", + "packageName": "multimatch", + "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" + } + }, + "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": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:mz": { + "type": "npm", + "name": "npm:mz", + "data": { + "version": "2.7.0", + "packageName": "mz", + "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" + } + }, + "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: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:next-tick": { + "type": "npm", + "name": "npm:next-tick", + "data": { + "version": "1.1.0", + "packageName": "next-tick", + "hash": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "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-fetch@2.6.7": { + "type": "npm", + "name": "npm:node-fetch@2.6.7", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.9", + "packageName": "node-fetch", + "hash": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.8.2", + "packageName": "node-gyp-build", + "hash": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "9.4.1", + "packageName": "node-gyp", + "hash": "sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==" + } + }, + "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-preload": { + "type": "npm", + "name": "npm:node-preload", + "data": { + "version": "0.2.1", + "packageName": "node-preload", + "hash": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.18", + "packageName": "node-releases", + "hash": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "6.0.0", + "packageName": "nopt", + "hash": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" + } + }, + "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-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "3.0.3", + "packageName": "normalize-package-data", + "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" + } + }, + "npm:normalize-package-data@5.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "1.1.2", + "packageName": "npm-bundled", + "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" + } + }, + "npm:npm-bundled@3.0.1": { + "type": "npm", + "name": "npm:npm-bundled@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "npm-bundled", + "hash": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==" + } + }, + "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": "1.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + } + }, + "npm:npm-normalize-package-bin@3.0.1": { + "type": "npm", + "name": "npm:npm-normalize-package-bin@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:npm-package-arg@10.1.0": { + "type": "npm", + "name": "npm:npm-package-arg@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "8.1.1", + "packageName": "npm-package-arg", + "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "5.1.1", + "packageName": "npm-packlist", + "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" + } + }, + "npm:npm-packlist@7.0.4": { + "type": "npm", + "name": "npm:npm-packlist@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "8.0.2", + "packageName": "npm-pick-manifest", + "hash": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==" + } + }, + "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-run-all": { + "type": "npm", + "name": "npm:npm-run-all", + "data": { + "version": "4.1.5", + "packageName": "npm-run-all", + "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" + } + }, + "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:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.13", + "packageName": "nwsapi", + "hash": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==" + } + }, + "npm:nx@16.10.0": { + "type": "npm", + "name": "npm:nx@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "nx", + "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "19.8.4", + "packageName": "nx", + "hash": "sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA==" + } + }, + "npm:nyc": { + "type": "npm", + "name": "npm:nyc", + "data": { + "version": "15.1.0", + "packageName": "nyc", + "hash": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==" + } + }, + "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.13.2", + "packageName": "object-inspect", + "hash": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" + } + }, + "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.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.8", + "packageName": "object.fromentries", + "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" + } + }, + "npm:object.groupby": { + "type": "npm", + "name": "npm:object.groupby", + "data": { + "version": "1.0.3", + "packageName": "object.groupby", + "hash": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.2.0", + "packageName": "object.values", + "hash": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:one-time": { + "type": "npm", + "name": "npm:one-time", + "data": { + "version": "1.0.0", + "packageName": "one-time", + "hash": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "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.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:outdent": { + "type": "npm", + "name": "npm:outdent", + "data": { + "version": "0.5.0", + "packageName": "outdent", + "hash": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "2.1.0", + "packageName": "p-filter", + "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "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-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@3.1.0": { + "type": "npm", + "name": "npm:p-limit@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "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": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "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-map-series": { + "type": "npm", + "name": "npm:p-map-series", + "data": { + "version": "2.1.0", + "packageName": "p-map-series", + "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" + } + }, + "npm:p-map@2.1.0": { + "type": "npm", + "name": "npm:p-map@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "p-map", + "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } + }, + "npm:p-map@3.0.0": { + "type": "npm", + "name": "npm:p-map@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-map", + "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:p-pipe": { + "type": "npm", + "name": "npm:p-pipe", + "data": { + "version": "3.1.0", + "packageName": "p-pipe", + "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" + } + }, + "npm:p-queue": { + "type": "npm", + "name": "npm:p-queue", + "data": { + "version": "6.6.2", + "packageName": "p-queue", + "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "3.2.0", + "packageName": "p-timeout", + "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" + } + }, + "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:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-waterfall": { + "type": "npm", + "name": "npm:p-waterfall", + "data": { + "version": "2.1.1", + "packageName": "p-waterfall", + "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" + } + }, + "npm:package-hash": { + "type": "npm", + "name": "npm:package-hash", + "data": { + "version": "4.0.0", + "packageName": "package-hash", + "hash": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==" + } + }, + "npm:package-json-from-dist": { + "type": "npm", + "name": "npm:package-json-from-dist", + "data": { + "version": "1.0.1", + "packageName": "package-json-from-dist", + "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.2.0", + "packageName": "pacote", + "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" + } + }, + "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-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:parse-passwd": { + "type": "npm", + "name": "npm:parse-passwd", + "data": { + "version": "1.0.0", + "packageName": "parse-passwd", + "hash": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==" + } + }, + "npm:parse-path": { + "type": "npm", + "name": "npm:parse-path", + "data": { + "version": "7.0.0", + "packageName": "parse-path", + "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" + } + }, + "npm:parse-url": { + "type": "npm", + "name": "npm:parse-url", + "data": { + "version": "8.1.0", + "packageName": "parse-url", + "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "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-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "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-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key@3.1.1": { + "type": "npm", + "name": "npm:path-key@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.11.1", + "packageName": "path-scurry", + "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" + } + }, + "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:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:pathval": { + "type": "npm", + "name": "npm:pathval", + "data": { + "version": "1.1.1", + "packageName": "pathval", + "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" + } + }, + "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.1.0", + "packageName": "picocolors", + "hash": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.3.1", + "packageName": "pidtree", + "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" + } + }, + "npm:pify@2.3.0": { + "type": "npm", + "name": "npm:pify@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "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@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": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "5.0.0", + "packageName": "pify", + "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "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: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:possible-typed-array-names": { + "type": "npm", + "name": "npm:possible-typed-array-names", + "data": { + "version": "1.0.0", + "packageName": "possible-typed-array-names", + "hash": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.47", + "packageName": "postcss", + "hash": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==" + } + }, + "npm:preferred-pm": { + "type": "npm", + "name": "npm:preferred-pm", + "data": { + "version": "3.1.4", + "packageName": "preferred-pm", + "hash": "sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==" + } + }, + "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.7", + "packageName": "prettier", + "hash": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==" + } + }, + "npm:pretty-format@25.5.0": { + "type": "npm", + "name": "npm:pretty-format@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "pretty-format", + "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" + } + }, + "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:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" + } + }, + "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-on-spawn": { + "type": "npm", + "name": "npm:process-on-spawn", + "data": { + "version": "1.0.0", + "packageName": "process-on-spawn", + "hash": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:promzard": { + "type": "npm", + "name": "npm:promzard", + "data": { + "version": "1.0.2", + "packageName": "promzard", + "hash": "sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==" + } + }, + "npm:protocols": { + "type": "npm", + "name": "npm:protocols", + "data": { + "version": "2.0.1", + "packageName": "protocols", + "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:proxyquire": { + "type": "npm", + "name": "npm:proxyquire", + "data": { + "version": "2.1.3", + "packageName": "proxyquire", + "hash": "sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==" + } + }, + "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.2", + "packageName": "pump", + "hash": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==" + } + }, + "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.1.0", + "packageName": "pure-rand", + "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" + } + }, + "npm:q": { + "type": "npm", + "name": "npm:q", + "data": { + "version": "1.5.1", + "packageName": "q", + "hash": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.5.3", + "packageName": "qs", + "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + } + }, + "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-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "4.0.1", + "packageName": "quick-lru", + "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "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:read-cmd-shim": { + "type": "npm", + "name": "npm:read-cmd-shim", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" + } + }, + "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-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "3.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==" + } + }, + "npm:read-pkg-up@7.0.1": { + "type": "npm", + "name": "npm:read-pkg-up@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "read-pkg-up", + "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" + } + }, + "npm:read-pkg@5.2.0": { + "type": "npm", + "name": "npm:read-pkg@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "read-pkg", + "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + } + }, + "npm:read-yaml-file": { + "type": "npm", + "name": "npm:read-yaml-file", + "data": { + "version": "1.1.0", + "packageName": "read-yaml-file", + "hash": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==" + } + }, + "npm:read": { + "type": "npm", + "name": "npm:read", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" + } + }, + "npm:read@3.0.1": { + "type": "npm", + "name": "npm:read@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "read", + "hash": "sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==" + } + }, + "npm:readable-stream@2.3.8": { + "type": "npm", + "name": "npm:readable-stream@2.3.8", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:realpath-native": { + "type": "npm", + "name": "npm:realpath-native", + "data": { + "version": "2.0.0", + "packageName": "realpath-native", + "hash": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.6.2", + "packageName": "rechoir", + "hash": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.14.1", + "packageName": "regenerator-runtime", + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + }, + "npm:regexp-to-ast": { + "type": "npm", + "name": "npm:regexp-to-ast", + "data": { + "version": "0.5.0", + "packageName": "regexp-to-ast", + "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.3", + "packageName": "regexp.prototype.flags", + "hash": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.2.0", + "packageName": "regexpp", + "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + } + }, + "npm:release-zalgo": { + "type": "npm", + "name": "npm:release-zalgo", + "data": { + "version": "1.0.0", + "packageName": "release-zalgo", + "hash": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==" + } + }, + "npm:remove-trailing-separator": { + "type": "npm", + "name": "npm:remove-trailing-separator", + "data": { + "version": "1.1.0", + "packageName": "remove-trailing-separator", + "hash": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + } + }, + "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-ext": { + "type": "npm", + "name": "npm:replace-ext", + "data": { + "version": "1.0.1", + "packageName": "replace-ext", + "hash": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" + } + }, + "npm:request": { + "type": "npm", + "name": "npm:request", + "data": { + "version": "2.88.2", + "packageName": "request", + "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" + } + }, + "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:require-in-the-middle": { + "type": "npm", + "name": "npm:require-in-the-middle", + "data": { + "version": "7.4.0", + "packageName": "require-in-the-middle", + "hash": "sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==" + } + }, + "npm:require-main-filename": { + "type": "npm", + "name": "npm:require-main-filename", + "data": { + "version": "2.0.0", + "packageName": "require-main-filename", + "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "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-dir": { + "type": "npm", + "name": "npm:resolve-dir", + "data": { + "version": "1.0.1", + "packageName": "resolve-dir", + "hash": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==" + } + }, + "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:resolve-global": { + "type": "npm", + "name": "npm:resolve-global", + "data": { + "version": "1.0.0", + "packageName": "resolve-global", + "hash": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==" + } + }, + "npm:resolve-pkg-maps": { + "type": "npm", + "name": "npm:resolve-pkg-maps", + "data": { + "version": "1.0.0", + "packageName": "resolve-pkg-maps", + "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve@1.1.7": { + "type": "npm", + "name": "npm:resolve@1.1.7", + "data": { + "version": "1.1.7", + "packageName": "resolve", + "hash": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" + } + }, + "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.4.1", + "packageName": "rfdc", + "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@4.4.1": { + "type": "npm", + "name": "npm:rimraf@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "rimraf", + "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" + } + }, + "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-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.1.2", + "packageName": "safe-array-concat", + "hash": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==" + } + }, + "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": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.3", + "packageName": "safe-regex-test", + "hash": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==" + } + }, + "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:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "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@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@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.3.2": { + "type": "npm", + "name": "npm:semver@7.3.2", + "data": { + "version": "7.3.2", + "packageName": "semver", + "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.3.7", + "packageName": "semver", + "hash": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" + } + }, + "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.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:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.2", + "packageName": "serialize-javascript", + "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.2.2", + "packageName": "set-function-length", + "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.2", + "packageName": "set-function-name", + "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command@2.0.0": { + "type": "npm", + "name": "npm:shebang-command@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "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": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:shelljs": { + "type": "npm", + "name": "npm:shelljs", + "data": { + "version": "0.8.5", + "packageName": "shelljs", + "hash": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" + } + }, + "npm:shimmer": { + "type": "npm", + "name": "npm:shimmer", + "data": { + "version": "1.2.1", + "packageName": "shimmer", + "hash": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" + } + }, + "npm:shx": { + "type": "npm", + "name": "npm:shx", + "data": { + "version": "0.3.3", + "packageName": "shx", + "hash": "sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.6", + "packageName": "side-channel", + "hash": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==" + } + }, + "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: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:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.9.0", + "packageName": "sigstore", + "hash": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==" + } + }, + "npm:simple-git": { + "type": "npm", + "name": "npm:simple-git", + "data": { + "version": "3.12.0", + "packageName": "simple-git", + "hash": "sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.2", + "packageName": "simple-swizzle", + "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "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:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:smartwrap": { + "type": "npm", + "name": "npm:smartwrap", + "data": { + "version": "2.0.2", + "packageName": "smartwrap", + "hash": "sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==" + } + }, + "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:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.8.3", + "packageName": "socks", + "hash": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==" + } + }, + "npm:sort-any": { + "type": "npm", + "name": "npm:sort-any", + "data": { + "version": "1.2.9", + "packageName": "sort-any", + "hash": "sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.2.1", + "packageName": "source-map-js", + "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + } + }, + "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.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support@0.5.21": { + "type": "npm", + "name": "npm:source-map-support@0.5.21", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map@0.5.6": { + "type": "npm", + "name": "npm:source-map@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "source-map", + "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:spawn-wrap": { + "type": "npm", + "name": "npm:spawn-wrap", + "data": { + "version": "2.0.0", + "packageName": "spawn-wrap", + "hash": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==" + } + }, + "npm:spawndamnit": { + "type": "npm", + "name": "npm:spawndamnit", + "data": { + "version": "2.0.0", + "packageName": "spawndamnit", + "hash": "sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.5.0", + "packageName": "spdx-exceptions", + "hash": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.20", + "packageName": "spdx-license-ids", + "hash": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "3.2.2", + "packageName": "split2", + "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sprintf-js@1.1.3": { + "type": "npm", + "name": "npm:sprintf-js@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "sprintf-js", + "hash": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.18.0", + "packageName": "sshpk", + "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" + } + }, + "npm:ssri@10.0.6": { + "type": "npm", + "name": "npm:ssri@10.0.6", + "data": { + "version": "10.0.6", + "packageName": "ssri", + "hash": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "9.0.1", + "packageName": "ssri", + "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" + } + }, + "npm:stack-chain": { + "type": "npm", + "name": "npm:stack-chain", + "data": { + "version": "1.3.7", + "packageName": "stack-chain", + "hash": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==" + } + }, + "npm:stack-generator": { + "type": "npm", + "name": "npm:stack-generator", + "data": { + "version": "2.0.10", + "packageName": "stack-generator", + "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" + } + }, + "npm:stack-trace": { + "type": "npm", + "name": "npm:stack-trace", + "data": { + "version": "0.0.10", + "packageName": "stack-trace", + "hash": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" + } + }, + "npm:stack-utils@1.0.5": { + "type": "npm", + "name": "npm:stack-utils@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "stack-utils", + "hash": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:stackframe": { + "type": "npm", + "name": "npm:stackframe", + "data": { + "version": "1.3.4", + "packageName": "stackframe", + "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + } + }, + "npm:stacktrace-gps": { + "type": "npm", + "name": "npm:stacktrace-gps", + "data": { + "version": "3.1.2", + "packageName": "stacktrace-gps", + "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" + } + }, + "npm:stacktrace-js": { + "type": "npm", + "name": "npm:stacktrace-js", + "data": { + "version": "2.0.2", + "packageName": "stacktrace-js", + "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" + } + }, + "npm:stdin": { + "type": "npm", + "name": "npm:stdin", + "data": { + "version": "0.0.1", + "packageName": "stdin", + "hash": "sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ==" + } + }, + "npm:stream-transform": { + "type": "npm", + "name": "npm:stream-transform", + "data": { + "version": "2.1.3", + "packageName": "stream-transform", + "hash": "sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==" + } + }, + "npm:streamroller": { + "type": "npm", + "name": "npm:streamroller", + "data": { + "version": "2.2.3", + "packageName": "streamroller", + "hash": "sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.1", + "packageName": "string-argv", + "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string-replace-loader": { + "type": "npm", + "name": "npm:string-replace-loader", + "data": { + "version": "3.1.0", + "packageName": "string-replace-loader", + "hash": "sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "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-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.1.6", + "packageName": "string.prototype.padend", + "hash": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.9", + "packageName": "string.prototype.trim", + "hash": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.8", + "packageName": "string.prototype.trimend", + "hash": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.8", + "packageName": "string.prototype.trimstart", + "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" + } + }, + "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_decoder@1.3.0": { + "type": "npm", + "name": "npm:string_decoder@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:stringify-object": { + "type": "npm", + "name": "npm:stringify-object", + "data": { + "version": "3.3.0", + "packageName": "stringify-object", + "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "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-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-bom-buf": { + "type": "npm", + "name": "npm:strip-bom-buf", + "data": { + "version": "1.0.0", + "packageName": "strip-bom-buf", + "hash": "sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==" + } + }, + "npm:strip-bom-stream": { + "type": "npm", + "name": "npm:strip-bom-stream", + "data": { + "version": "2.0.0", + "packageName": "strip-bom-stream", + "hash": "sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==" + } + }, + "npm:strip-bom@2.0.0": { + "type": "npm", + "name": "npm:strip-bom@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-bom", + "hash": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==" + } + }, + "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:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "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:strnum": { + "type": "npm", + "name": "npm:strnum", + "data": { + "version": "1.0.5", + "packageName": "strnum", + "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + } + }, + "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:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "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@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-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: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:table": { + "type": "npm", + "name": "npm:table", + "data": { + "version": "6.8.1", + "packageName": "table", + "hash": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==" + } + }, + "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:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.11", + "packageName": "tar", + "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:temp-dir@2.0.0": { + "type": "npm", + "name": "npm:temp-dir@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "temp-dir", + "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + } + }, + "npm:tempfile": { + "type": "npm", + "name": "npm:tempfile", + "data": { + "version": "3.0.0", + "packageName": "tempfile", + "hash": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==" + } + }, + "npm:term-size": { + "type": "npm", + "name": "npm:term-size", + "data": { + "version": "2.2.1", + "packageName": "term-size", + "hash": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.10", + "packageName": "terser-webpack-plugin", + "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.34.1", + "packageName": "terser", + "hash": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==" + } + }, + "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": "1.9.0", + "packageName": "text-extensions", + "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" + } + }, + "npm:text-hex": { + "type": "npm", + "name": "npm:text-hex", + "data": { + "version": "1.0.0", + "packageName": "text-hex", + "hash": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + } + }, + "npm:textextensions": { + "type": "npm", + "name": "npm:textextensions", + "data": { + "version": "5.16.0", + "packageName": "textextensions", + "hash": "sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==" + } + }, + "npm:thenify-all": { + "type": "npm", + "name": "npm:thenify-all", + "data": { + "version": "1.6.0", + "packageName": "thenify-all", + "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" + } + }, + "npm:thenify": { + "type": "npm", + "name": "npm:thenify", + "data": { + "version": "3.3.1", + "packageName": "thenify", + "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" + } + }, + "npm:through2@2.0.5": { + "type": "npm", + "name": "npm:through2@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "4.0.2", + "packageName": "through2", + "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:timers-ext": { + "type": "npm", + "name": "npm:timers-ext", + "data": { + "version": "0.1.7", + "packageName": "timers-ext", + "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" + } + }, + "npm:tmp-promise": { + "type": "npm", + "name": "npm:tmp-promise", + "data": { + "version": "3.0.2", + "packageName": "tmp-promise", + "hash": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==" + } + }, + "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: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-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:tough-cookie@2.5.0": { + "type": "npm", + "name": "npm:tough-cookie@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "tough-cookie", + "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.4", + "packageName": "tough-cookie", + "hash": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tr46@3.0.0": { + "type": "npm", + "name": "npm:tr46@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.3.9", + "packageName": "traverse", + "hash": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==" + } + }, + "npm:trim-newlines": { + "type": "npm", + "name": "npm:trim-newlines", + "data": { + "version": "3.0.1", + "packageName": "trim-newlines", + "hash": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" + } + }, + "npm:triple-beam": { + "type": "npm", + "name": "npm:triple-beam", + "data": { + "version": "1.3.0", + "packageName": "triple-beam", + "hash": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.0.5", + "packageName": "ts-jest", + "hash": "sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "8.5.2", + "packageName": "ts-node", + "hash": "sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A==" + } + }, + "npm:tsconfig-paths@3.15.0": { + "type": "npm", + "name": "npm:tsconfig-paths@3.15.0", + "data": { + "version": "3.15.0", + "packageName": "tsconfig-paths", + "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" + } + }, + "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: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:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.7.0", + "packageName": "tslib", + "hash": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:tty-table": { + "type": "npm", + "name": "npm:tty-table", + "data": { + "version": "4.2.3", + "packageName": "tty-table", + "hash": "sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.7", + "packageName": "tuf-js", + "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" + } + }, + "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: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-fest@0.13.1": { + "type": "npm", + "name": "npm:type-fest@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "type-fest", + "hash": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==" + } + }, + "npm:type-fest@0.18.1": { + "type": "npm", + "name": "npm:type-fest@0.18.1", + "data": { + "version": "0.18.1", + "packageName": "type-fest", + "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + } + }, + "npm:type-fest@0.21.3": { + "type": "npm", + "name": "npm:type-fest@0.21.3", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:type-fest@0.4.1": { + "type": "npm", + "name": "npm:type-fest@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "type-fest", + "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" + } + }, + "npm:type-fest@0.6.0": { + "type": "npm", + "name": "npm:type-fest@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "type-fest", + "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.8.1", + "packageName": "type-fest", + "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + }, + "npm:type": { + "type": "npm", + "name": "npm:type", + "data": { + "version": "1.2.0", + "packageName": "type", + "hash": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + } + }, + "npm:type@2.7.2": { + "type": "npm", + "name": "npm:type@2.7.2", + "data": { + "version": "2.7.2", + "packageName": "type", + "hash": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "typed-array-buffer", + "hash": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.1", + "packageName": "typed-array-byte-length", + "hash": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.2", + "packageName": "typed-array-byte-offset", + "hash": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.6", + "packageName": "typed-array-length", + "hash": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==" + } + }, + "npm:typedarray-to-buffer": { + "type": "npm", + "name": "npm:typedarray-to-buffer", + "data": { + "version": "3.1.5", + "packageName": "typedarray-to-buffer", + "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + } + }, + "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": "4.9.4", + "packageName": "typescript", + "hash": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.19.3", + "packageName": "uglify-js", + "hash": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:unique-filename@2.0.1": { + "type": "npm", + "name": "npm:unique-filename@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "unique-filename", + "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" + } + }, + "npm:unique-slug@3.0.0": { + "type": "npm", + "name": "npm:unique-slug@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unique-slug", + "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" + } + }, + "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: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:unzipper": { + "type": "npm", + "name": "npm:unzipper", + "data": { + "version": "0.10.14", + "packageName": "unzipper", + "hash": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==" + } + }, + "npm:upath": { + "type": "npm", + "name": "npm:upath", + "data": { + "version": "2.0.1", + "packageName": "upath", + "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.1.1", + "packageName": "update-browserslist-db", + "hash": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==" + } + }, + "npm:update-ts-references": { + "type": "npm", + "name": "npm:update-ts-references", + "data": { + "version": "3.2.1", + "packageName": "update-ts-references", + "hash": "sha512-ur9psM1Jvg67Y1ErSIX/zAG5t934ZfZwigB4hZwzmOwn4Cgez3sEoUUvSYvvxj4nLgWdkPKQVDL53MwA+DEndw==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + } + }, + "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:uuid@9.0.1": { + "type": "npm", + "name": "npm:uuid@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "uuid", + "hash": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" + } + }, + "npm:v8-compile-cache@2.3.0": { + "type": "npm", + "name": "npm:v8-compile-cache@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.4.0", + "packageName": "v8-compile-cache", + "hash": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.3.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + } + }, + "npm:validate-npm-package-name@3.0.0": { + "type": "npm", + "name": "npm:validate-npm-package-name@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" + } + }, + "npm:vinyl-file": { + "type": "npm", + "name": "npm:vinyl-file", + "data": { + "version": "3.0.0", + "packageName": "vinyl-file", + "hash": "sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==" + } + }, + "npm:vinyl": { + "type": "npm", + "name": "npm:vinyl", + "data": { + "version": "2.2.1", + "packageName": "vinyl", + "hash": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==" + } + }, + "npm:vscode-jsonrpc": { + "type": "npm", + "name": "npm:vscode-jsonrpc", + "data": { + "version": "8.0.2", + "packageName": "vscode-jsonrpc", + "hash": "sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==" + } + }, + "npm:vscode-languageclient": { + "type": "npm", + "name": "npm:vscode-languageclient", + "data": { + "version": "8.0.2", + "packageName": "vscode-languageclient", + "hash": "sha512-lHlthJtphG9gibGb/y72CKqQUxwPsMXijJVpHEC2bvbFqxmkj9LwQ3aGU9dwjBLqsX1S4KjShYppLvg1UJDF/Q==" + } + }, + "npm:vscode-languageserver-protocol": { + "type": "npm", + "name": "npm:vscode-languageserver-protocol", + "data": { + "version": "3.17.2", + "packageName": "vscode-languageserver-protocol", + "hash": "sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.1": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.11": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.11", + "data": { + "version": "1.0.11", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==" + } + }, + "npm:vscode-languageserver-textdocument": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument", + "data": { + "version": "1.0.12", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.7": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.7", + "data": { + "version": "1.0.7", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" + } + }, + "npm:vscode-languageserver-types": { + "type": "npm", + "name": "npm:vscode-languageserver-types", + "data": { + "version": "3.17.2", + "packageName": "vscode-languageserver-types", + "hash": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==" + } + }, + "npm:vscode-languageserver": { + "type": "npm", + "name": "npm:vscode-languageserver", + "data": { + "version": "8.0.2", + "packageName": "vscode-languageserver", + "hash": "sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==" + } + }, + "npm:vscode-test": { + "type": "npm", + "name": "npm:vscode-test", + "data": { + "version": "1.6.1", + "packageName": "vscode-test", + "hash": "sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA==" + } + }, + "npm:vscode-uri": { + "type": "npm", + "name": "npm:vscode-uri", + "data": { + "version": "2.1.2", + "packageName": "vscode-uri", + "hash": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==" + } + }, + "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.2", + "packageName": "watchpack", + "hash": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" + } + }, + "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: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": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.95.0", + "packageName": "webpack", + "hash": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==" + } + }, + "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:whatwg-url@11.0.0": { + "type": "npm", + "name": "npm:whatwg-url@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "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-module": { + "type": "npm", + "name": "npm:which-module", + "data": { + "version": "2.0.1", + "packageName": "which-module", + "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + } + }, + "npm:which-pm": { + "type": "npm", + "name": "npm:which-pm", + "data": { + "version": "2.2.0", + "packageName": "which-pm", + "hash": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.15", + "packageName": "which-typed-array", + "hash": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==" + } + }, + "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@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "3.0.1", + "packageName": "which", + "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" + } + }, + "npm:winston-transport": { + "type": "npm", + "name": "npm:winston-transport", + "data": { + "version": "4.3.0", + "packageName": "winston-transport", + "hash": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==" + } + }, + "npm:winston-transport@4.6.0": { + "type": "npm", + "name": "npm:winston-transport@4.6.0", + "data": { + "version": "4.6.0", + "packageName": "winston-transport", + "hash": "sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==" + } + }, + "npm:winston": { + "type": "npm", + "name": "npm:winston", + "data": { + "version": "3.3.3", + "packageName": "winston", + "hash": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==" + } + }, + "npm:word-wrap": { + "type": "npm", + "name": "npm:word-wrap", + "data": { + "version": "1.2.5", + "packageName": "word-wrap", + "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + } + }, + "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: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-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:write-file-atomic@2.4.3": { + "type": "npm", + "name": "npm:write-file-atomic@2.4.3", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:write-file-atomic@3.0.3": { + "type": "npm", + "name": "npm:write-file-atomic@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "write-file-atomic", + "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" + } + }, + "npm:write-json-file": { + "type": "npm", + "name": "npm:write-json-file", + "data": { + "version": "3.2.0", + "packageName": "write-json-file", + "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" + } + }, + "npm:write-pkg": { + "type": "npm", + "name": "npm:write-pkg", + "data": { + "version": "4.0.0", + "packageName": "write-pkg", + "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.17.1", + "packageName": "ws", + "hash": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==" + } + }, + "npm:ws@8.18.0": { + "type": "npm", + "name": "npm:ws@8.18.0", + "data": { + "version": "8.18.0", + "packageName": "ws", + "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" + } + }, + "npm:xml-js": { + "type": "npm", + "name": "npm:xml-js", + "data": { + "version": "1.6.11", + "packageName": "xml-js", + "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + } + }, + "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:xml": { + "type": "npm", + "name": "npm:xml", + "data": { + "version": "1.0.1", + "packageName": "xml", + "hash": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==" + } + }, + "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": "4.0.3", + "packageName": "y18n", + "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + }, + "npm:y18n@5.0.8": { + "type": "npm", + "name": "npm:y18n@5.0.8", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "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@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:yaml@2.2.2": { + "type": "npm", + "name": "npm:yaml@2.2.2", + "data": { + "version": "2.2.2", + "packageName": "yaml", + "hash": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==" + } + }, + "npm:yargs-parser@18.1.3": { + "type": "npm", + "name": "npm:yargs-parser@18.1.3", + "data": { + "version": "18.1.3", + "packageName": "yargs-parser", + "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "20.2.4", + "packageName": "yargs-parser", + "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" + } + }, + "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@21.1.1": { + "type": "npm", + "name": "npm:yargs-parser@21.1.1", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "15.4.1", + "packageName": "yargs", + "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + } + }, + "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@17.7.2": { + "type": "npm", + "name": "npm:yargs@17.7.2", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "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==" + } + } + }, + "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:@apidevtools/json-schema-ref-parser", + "target": "npm:@jsdevtools/ono", + "type": "static" + }, + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:call-me-maybe", + "type": "static" + }, + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@azure/abort-controller@1.1.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/abort-controller", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/core-util", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/abort-controller@1.1.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-util", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:http-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-util", + "target": "npm:@azure/abort-controller@1.1.0", + "type": "static" + }, + { + "source": "npm:@azure/core-util", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/logger", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@opentelemetry/instrumentation", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.25.7", + "target": "npm:@babel/highlight@7.25.7", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.25.7", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame@7.25.7", + "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-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@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/traverse", + "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-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-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier@7.24.7", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@babel/parser", + "target": "npm:@babel/types", + "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-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-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/runtime", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame@7.25.7", + "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@7.25.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/template", + "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@11.12.0", + "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:@changesets/apply-release-plan", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/config", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/get-version-range-type", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/git", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:lodash.startcase", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:outdent", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@changesets/get-dependents-graph", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@changesets/changelog-git", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/apply-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/assemble-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/changelog-git", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/config", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/get-dependents-graph", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/get-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/git", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/logger", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/pre", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/read", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/write", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@types/is-ci", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@types/semver@6.2.7", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:human-id", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:outdent", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:preferred-pm", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:spawndamnit", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:term-size", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:tty-table", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/get-dependents-graph", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/logger", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@changesets/errors", + "target": "npm:extendable-error", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/assemble-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/config", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/pre", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/read", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:is-subdir", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:spawndamnit", + "type": "static" + }, + { + "source": "npm:@changesets/logger", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/parse", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/parse", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/git", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/logger", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/parse", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:p-filter", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:human-id", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@chevrotain/gast", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/gast", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/format", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/lint", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/load", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/read", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:resolve-global", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:@commitlint/config-conventional", + "target": "npm:conventional-changelog-conventionalcommits", + "type": "static" + }, + { + "source": "npm:@commitlint/config-validator", + "target": "npm:@commitlint/types@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/config-validator", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:@commitlint/ensure", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/ensure", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/format", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/format", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@commitlint/is-ignored", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/is-ignored", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/is-ignored", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/parse", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/rules", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:@commitlint/execute-rule", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:@commitlint/resolve-extends", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/config-validator", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/execute-rule@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/resolve-extends@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/types@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:cosmiconfig@9.0.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:cosmiconfig-typescript-loader", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:@commitlint/parse", + "target": "npm:conventional-changelog-angular@5.0.13", + "type": "static" + }, + { + "source": "npm:@commitlint/parse", + "target": "npm:conventional-commits-parser@3.2.4", + "type": "static" + }, + { + "source": "npm:@commitlint/read", + "target": "npm:@commitlint/top-level", + "type": "static" + }, + { + "source": "npm:@commitlint/read", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/read", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:resolve-global", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:@commitlint/config-validator", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:@commitlint/types@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:global-directory", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:import-meta-resolve", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:lodash.mergewith", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/ensure", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/message", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/to-lines", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/top-level", + "target": "npm:find-up@5.0.0", + "type": "static" + }, + { + "source": "npm:@commitlint/types@19.5.0", + "target": "npm:@types/conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@commitlint/types@19.5.0", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:@dabh/diagnostics", + "target": "npm:colorspace", + "type": "static" + }, + { + "source": "npm:@dabh/diagnostics", + "target": "npm:enabled", + "type": "static" + }, + { + "source": "npm:@dabh/diagnostics", + "target": "npm:kuler", + "type": "static" + }, + { + "source": "npm:@emnapi/core", + "target": "npm:@emnapi/wasi-threads", + "type": "static" + }, + { + "source": "npm:@emnapi/core", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@emnapi/runtime", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@emnapi/wasi-threads", + "target": "npm:tslib", + "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", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@formatjs/ts-transformer", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/loud-rejection", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/node@14.18.63", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@vue/compiler-sfc", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:intl-messageformat-parser", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:loud-rejection", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@formatjs/ecma402-abstract", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:intl-messageformat-parser", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:ts-jest", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "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@3.14.1", + "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@4.1.2", + "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@4.1.2", + "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@29.7.0", + "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@29.7.0", + "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-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot@29.7.0", + "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@4.1.2", + "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@6.0.3", + "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@4.1.2", + "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@4.0.2", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-reports@1.1.2", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/yargs@15.0.19", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:chalk@3.0.0", + "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@4.1.2", + "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:@kwsites/file-exists", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:nx@16.10.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:uuid@9.0.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:@types/node@12.20.55", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:@changesets/types@4.1.0", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:@manypkg/find-root", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:read-yaml-file", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/core", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@tybys/wasm-util", + "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@2.1.2", + "target": "npm:@gar/promisify", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:semver", + "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", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which", + "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", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nrwl/tao@16.10.0", + "target": "npm:nx@16.10.0", + "type": "static" + }, + { + "source": "npm:@nrwl/tao@16.10.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:tslib", + "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@2.3.6", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:nx@16.10.0", + "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:@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:is-plain-object@5.0.0", + "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/tsconfig", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-request-log", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types@10.0.0", + "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/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:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + }, + { + "source": "npm:@octokit/types@10.0.0", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@opentelemetry/api-logs", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/core", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/core", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:@opentelemetry/api-logs", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:@types/shimmer", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:import-in-the-middle", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:require-in-the-middle", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:shimmer", + "type": "static" + }, + { + "source": "npm:@opentelemetry/resources", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/resources", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:@opentelemetry/resources", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/resources", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/semantic-conventions", + "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:@prettier/plugin-xml", + "target": "npm:@xml-tools/parser@1.0.11", + "type": "static" + }, + { + "source": "npm:@prettier/plugin-xml", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@sap-ux/edmx-parser", + "target": "npm:xml-js", + "type": "static" + }, + { + "source": "npm:@sap-ux/i18n", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@sap-ux/i18n", + "target": "npm:vscode-languageserver-textdocument@1.0.7", + "type": "static" + }, + { + "source": "npm:@sap-ux/i18n", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:@sap-ux/i18n", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:@sap-ux/ui5-config", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:fast-xml-parser", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:findit2", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:mem-fs", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:mem-fs-editor", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@sap-ux/ui5-config", + "target": "npm:@sap-ux/yaml", + "type": "static" + }, + { + "source": "npm:@sap-ux/ui5-config", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@sap-ux/ui5-config", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@sap-ux/yaml", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@sap-ux/yaml", + "target": "npm:yaml@2.2.2", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:axios@1.7.4", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:url-join", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "target": "npm:esm", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "target": "npm:lodash@4.17.20", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "target": "npm:matomo-tracker", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx", + "target": "npm:@sap/bas-sdk", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx", + "target": "npm:applicationinsights", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx", + "target": "npm:lodash", + "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:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@tybys/wasm-util", + "target": "npm:tslib", + "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/conventional-commits-parser", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/fs-extra", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/is-ci", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports@1.1.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports@1.1.2", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/jest-specific-snapshot", + "target": "npm:@types/jest", + "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/klaw-sync", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/loud-rejection", + "target": "npm:loud-rejection", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@types/rimraf", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:@types/rimraf", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/sinon-chai", + "target": "npm:@types/chai", + "type": "static" + }, + { + "source": "npm:@types/sinon-chai", + "target": "npm:@types/sinon", + "type": "static" + }, + { + "source": "npm:@types/sinon", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + }, + { + "source": "npm:@types/yargs@15.0.19", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:regexpp", + "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/eslint-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils@3.0.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager@4.14.0", + "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/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@4.14.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@4.14.0", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys@4.33.0", + "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:lodash", + "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/typescript-estree", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:@typescript-eslint/visitor-keys@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:typescript", + "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:@typescript-eslint/visitor-keys@4.33.0", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@4.33.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:@vscode-logging/types", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:fast-safe-stringify", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:lodash@4.17.20", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:stacktrace-js", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:streamroller", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:winston", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:winston-transport", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-ssr", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/shared", + "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:@xml-tools/ast-position", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "npm:@xml-tools/ast", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "npm:@xml-tools/ast", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "npm:@xml-tools/ast", + "target": "npm:lodash@4.17.15", + "type": "static" + }, + { + "source": "npm:@xml-tools/common", + "target": "npm:lodash@4.17.15", + "type": "static" + }, + { + "source": "npm:@xml-tools/content-assist", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "npm:@xml-tools/content-assist", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "npm:@xml-tools/content-assist", + "target": "npm:lodash@4.17.15", + "type": "static" + }, + { + "source": "npm:@xml-tools/parser@1.0.11", + "target": "npm:chevrotain@7.1.1", + "type": "static" + }, + { + "source": "npm:@xml-tools/parser", + "target": "npm:chevrotain", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@zkochan/js-yaml@0.0.6", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:acorn-import-attributes", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-walk", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "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-keywords", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "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", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:append-transform", + "target": "npm:default-require-extensions", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/core-rest-pipeline", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/core-util", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@microsoft/applicationinsights-web-snippet", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/sdk-trace-base", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:cls-hooked", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:continuation-local-storage", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:diagnostic-channel", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:diagnostic-channel-publishers", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "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:es-object-atoms", + "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.findlastindex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-shim-unscopables", + "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: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:es-errors", + "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:async-hook-jl", + "target": "npm:stack-chain", + "type": "static" + }, + { + "source": "npm:async-listener", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:async-listener", + "target": "npm:shimmer", + "type": "static" + }, + { + "source": "npm:available-typed-arrays", + "target": "npm:possible-typed-array-names", + "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", + "type": "static" + }, + { + "source": "npm:axios@1.7.4", + "target": "npm:follow-redirects@1.15.9", + "type": "static" + }, + { + "source": "npm:axios@1.7.4", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.7.4", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:axios@1.7.7", + "target": "npm:follow-redirects@1.15.9", + "type": "static" + }, + { + "source": "npm:axios@1.7.7", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.7.7", + "target": "npm:proxy-from-env", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "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: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-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-class-static-block", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-attributes", + "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-private-property-in-object", + "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:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + }, + { + "source": "npm:better-path-resolve", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:binary", + "target": "npm:buffers", + "type": "static" + }, + { + "source": "npm:binary", + "target": "npm:chainsaw", + "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", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:breakword", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:browser-resolve", + "target": "npm:resolve@1.1.7", + "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@16.1.3", + "target": "npm:@npmcli/fs@2.1.2", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:unique-filename@2.0.1", + "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.4.5", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass@7.1.2", + "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@10.0.6", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:hasha", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:package-hash", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:write-file-atomic@3.0.3", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:es-errors", + "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:camelcase-keys", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:assertion-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:check-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:deep-eql", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:get-func-name", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:pathval", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:chainsaw", + "target": "npm:traverse", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.0", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:check-error", + "target": "npm:get-func-name", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/cst-dts-gen", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/utils", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:regexp-to-ast", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:regexp-to-ast", + "type": "static" + }, + { + "source": "npm:chevrotain@7.1.1", + "target": "npm:regexp-to-ast", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:memoizee", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:timers-ext", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:wrap-ansi@6.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", + "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", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:cls-hooked", + "target": "npm:async-hook-jl", + "type": "static" + }, + { + "source": "npm:cls-hooked", + "target": "npm:emitter-listener", + "type": "static" + }, + { + "source": "npm:cls-hooked", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + }, + { + "source": "npm:colorspace", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:colorspace", + "target": "npm:text-hex", + "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:comment-json", + "target": "npm:array-timsort", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:has-own-prop", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:cz-conventional-changelog", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:find-node-modules", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:find-root", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:is-utf8", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:minimist@1.2.7", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop", + "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:continuation-local-storage", + "target": "npm:async-listener", + "type": "static" + }, + { + "source": "npm:continuation-local-storage", + "target": "npm:emitter-listener", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular@5.0.13", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular@5.0.13", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-atom", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:conventional-changelog", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:tempfile", + "type": "static" + }, + { + "source": "npm:conventional-changelog-codemirror", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:conventional-changelog-writer@5.0.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:conventional-commits-parser@3.2.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:git-semver-tags@4.1.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-raw-commits@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:conventional-changelog-ember", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-eslint", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-express", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-jquery", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-jshint", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-jshint", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:conventional-commits-filter@2.0.7", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:dateformat", + "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@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-angular@5.0.13", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-atom", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-codemirror", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-conventionalcommits", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-core@4.2.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-ember", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-eslint", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-express", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-jquery", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-jshint", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-preset-loader", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter@2.0.7", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter@2.0.7", + "target": "npm:modify-values", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:modify-values", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-changelog-preset-loader@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-raw-commits@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:cosmiconfig@9.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:typescript", + "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:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "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:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:lcov-parse", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:log-driver", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk@4.1.2", + "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@29.7.0", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:cross-env", + "target": "npm:cross-spawn", + "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", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which@1.3.1", + "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", + "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", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command@2.0.0", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:csv-generate", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:csv-parse", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:csv-stringify", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:stream-transform", + "type": "static" + }, + { + "source": "npm:currently-unhandled", + "target": "npm:array-find-index", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:commitizen", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:conventional-commit-types", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:lodash.map", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:longest", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:word-wrap", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:@commitlint/load@19.5.0", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:type", + "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@11.0.0", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:debug@4.3.4", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:map-obj@1.0.1", + "type": "static" + }, + { + "source": "npm:deep-eql", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:deep-equal-in-any-order", + "target": "npm:lodash.mapvalues", + "type": "static" + }, + { + "source": "npm:deep-equal-in-any-order", + "target": "npm:sort-any", + "type": "static" + }, + { + "source": "npm:default-require-extensions", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone@1.0.4", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "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:diagnostic-channel-publishers", + "target": "npm:diagnostic-channel", + "type": "static" + }, + { + "source": "npm:diagnostic-channel", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:doctrine@2.1.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:dot-prop", + "target": "npm:is-obj@2.0.0", + "type": "static" + }, + { + "source": "npm:dotenv-expand", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:duplexer2", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:emitter-listener", + "target": "npm:shimmer", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "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@2.3.6", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "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:data-view-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-object-atoms", + "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-data-view", + "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-define-property", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-object-atoms", + "target": "npm:es-errors", + "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-shim-unscopables", + "target": "npm:hasown@2.0.0", + "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:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-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@5.3.0", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "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@2.15.1", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:eslint-import-resolver-typescript", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:@rtsao/scc", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.findlastindex", + "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", + "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:hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module@2.15.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.groupby", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.15.0", + "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-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:eslint-utils@3.0.0", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-utils@3.0.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk@4.1.2", + "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:enquirer", + "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:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore@4.0.6", + "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@3.14.1", + "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", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:semver", + "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:table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:v8-compile-cache", + "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@1.3.0", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse@5.3.0", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse@5.3.0", + "type": "static" + }, + { + "source": "npm:event-emitter", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:event-emitter", + "target": "npm:es5-ext", + "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", + "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:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals@2.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream@2.0.1", + "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: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@2.1.0", + "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:expand-tilde", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-matcher-utils@25.5.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-message-util@25.5.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-regex-util@25.2.6", + "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:ext", + "target": "npm:type@2.7.2", + "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: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:fast-xml-parser", + "target": "npm:strnum", + "type": "static" + }, + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + }, + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:fill-keys", + "target": "npm:is-object", + "type": "static" + }, + { + "source": "npm:fill-keys", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "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-node-modules", + "target": "npm:findup-sync", + "type": "static" + }, + { + "source": "npm:find-node-modules", + "target": "npm:merge", + "type": "static" + }, + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "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-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:find-yarn-workspace-root2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root2", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:detect-file", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:resolve-dir", + "type": "static" + }, + { + "source": "npm:first-chunk-stream", + "target": "npm:readable-stream@2.3.8", + "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", + "type": "static" + }, + { + "source": "npm:foreground-child@3.3.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child@3.3.0", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:mime-types", + "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: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:front-matter", + "target": "npm:js-yaml@3.14.1", + "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-extra@11.2.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:universalify@0.1.2", + "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:fs-minipass@2.1.0", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass@7.1.2", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:mkdirp@0.5.6", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:rimraf@2.7.1", + "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:es-errors", + "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@2.0.0", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:@hutson/parse-repository-url", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:hosted-git-info@4.1.0", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:get-tsconfig", + "target": "npm:resolve-pkg-maps", + "type": "static" + }, + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:git-raw-commits@3.0.0", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits@3.0.0", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-raw-commits@3.0.0", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:gitconfiglocal", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:pify@2.3.0", + "type": "static" + }, + { + "source": "npm:git-semver-tags@4.1.1", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-semver-tags@4.1.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:is-ssh", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:parse-url", + "type": "static" + }, + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + }, + { + "source": "npm:gitconfiglocal", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-promise", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:glob-promise", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:foreground-child@3.3.0", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:minimatch@9.0.5", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:minipass@7.1.2", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:package-json-from-dist", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:path-scurry", + "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: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", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "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", + "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:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.4", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.8", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:global-directory", + "target": "npm:ini@4.1.1", + "type": "static" + }, + { + "source": "npm:global-dirs", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:global-prefix", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:resolve-dir", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:globals", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:gopd", + "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:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "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", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:har-schema", + "type": "static" + }, + { + "source": "npm:has-property-descriptors", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:hasha", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:hasha", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:hasown@2.0.0", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:homedir-polyfill", + "target": "npm:parse-passwd", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info@4.1.0", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info@6.1.1", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "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-agent@5.0.0", + "target": "npm:@tootallnate/once@2.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@5.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@5.0.0", + "target": "npm:debug", + "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:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug@4.3.4", + "type": "static" + }, + { + "source": "npm:humanize-ms", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:i18next", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:ignore-walk@6.0.5", + "target": "npm:minimatch@9.0.3", + "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-in-the-middle", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:import-in-the-middle", + "target": "npm:acorn-import-attributes", + "type": "static" + }, + { + "source": "npm:import-in-the-middle", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:import-in-the-middle", + "target": "npm:module-details-from-path", + "type": "static" + }, + { + "source": "npm:import-local@3.1.0", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local@3.1.0", + "target": "npm:resolve-cwd", + "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:init-package-json", + "target": "npm:npm-package-arg@10.1.0", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:promzard", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk@4.1.2", + "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@5.4.1", + "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:internal-slot", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:intl-messageformat-parser", + "target": "npm:@formatjs/ecma402-abstract", + "type": "static" + }, + { + "source": "npm:intl-messageformat-parser", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:ip-address", + "target": "npm:jsbn@1.1.0", + "type": "static" + }, + { + "source": "npm:ip-address", + "target": "npm:sprintf-js@1.1.3", + "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-bigint", + "target": "npm:has-bigints", + "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@2.0.0", + "type": "static" + }, + { + "source": "npm:is-core-module@2.15.1", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:is-data-view", + "target": "npm:is-typed-array", + "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-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-ssh", + "target": "npm:protocols", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-subdir", + "target": "npm:better-path-resolve", + "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:istanbul-lib-hook", + "target": "npm:append-transform", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "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.1", + "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:istanbul-lib-instrument@6.0.3", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:archy", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:uuid", + "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@7.2.0", + "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", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit@3.1.0", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent@1.5.3", + "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@29.7.0", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit@3.1.0", + "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@4.1.2", + "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@29.7.0", + "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@17.7.2", + "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:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk@4.1.2", + "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-config", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-environment-node@29.7.0", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:diff-sequences@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:pretty-format@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk@4.1.2", + "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@4.1.2", + "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-environment-node@29.7.0", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-esm-transformer", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-esm-transformer", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:jest-extended", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-extended", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-extended", + "target": "npm:jest-get-type", + "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-junit", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:jest-junit", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:jest-junit", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:jest-junit", + "target": "npm:xml", + "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@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:jest-diff@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:pretty-format@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk@4.1.2", + "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@25.5.0", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:stack-utils@1.0.5", + "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@2.0.3", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk@4.1.2", + "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@25.5.1", + "type": "static" + }, + { + "source": "npm:jest-pnp-resolver", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot@29.7.0", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:browser-resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:read-pkg-up@7.0.1", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:realpath-native", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:chalk@4.1.2", + "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", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "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@4.1.2", + "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@29.7.0", + "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@3.1.0", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "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@4.1.2", + "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@29.7.0", + "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/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@types/prettier@1.19.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-resolve@25.5.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:jest-sonar", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:jest-sonar", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest-snapshot", + "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@4.1.2", + "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@4.1.2", + "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@4.1.2", + "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@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: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: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:js-yaml@3.14.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn@8.12.1", + "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@5.0.0", + "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", + "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@11.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws@8.18.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:json-schema-ref-parser", + "target": "npm:@apidevtools/json-schema-ref-parser", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:@types/prettier", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:cli-color", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:glob-promise", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:json-schema-ref-parser", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:mz", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:stdin", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:jsonify", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:jsonfile@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "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:keyv", + "target": "npm:json-buffer", + "type": "static" + }, + { + "source": "npm:klaw-sync", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@lerna/create", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:import-local@3.1.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmaccess", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:nx@16.10.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-pipe", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-waterfall", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:uuid@9.0.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-package-arg@10.1.0", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-package-arg@10.1.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ssri@10.0.6", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:log-symbols", + "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:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:stringify-object", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:enquirer", + "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:load-json-file@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:strip-bom@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", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:type-fest@0.6.0", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "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:locate-path", + "target": "npm:p-locate", + "type": "static" + }, + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "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:logform", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:@types/triple-beam", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:fecha", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:loud-rejection", + "target": "npm:currently-unhandled", + "type": "static" + }, + { + "source": "npm:loud-rejection", + "target": "npm:signal-exit", + "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:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:lru-queue", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "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:make-dir", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@4.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:cacache@16.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-fetch@2.1.2", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:ssri", + "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@5.0.0", + "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@10.0.6", + "type": "static" + }, + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:binaryextensions", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:mem-fs", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:textextensions", + "type": "static" + }, + { + "source": "npm:mem-fs", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:mem-fs", + "target": "npm:vinyl-file", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:event-emitter", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:lru-queue", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:timers-ext", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:read-pkg-up@7.0.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:type-fest@0.13.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:read-pkg-up@7.0.1", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:type-fest@0.18.1", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:yargs-parser@20.2.9", + "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:minimatch@3.0.5", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:minimatch@8.0.4", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.5", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:arrify@1.0.1", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:minipass-collect", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass@7.1.2", + "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-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:mkdirp@0.5.6", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:any-promise", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:thenify-all", + "type": "static" + }, + { + "source": "npm:node-fetch@2.6.7", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url", + "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", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen@10.2.1", + "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@2.0.2", + "type": "static" + }, + { + "source": "npm:node-preload", + "target": "npm:process-on-spawn", + "type": "static" + }, + { + "source": "npm:nopt", + "target": "npm:abbrev", + "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:normalize-package-data", + "target": "npm:hosted-git-info@4.1.0", + "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:normalize-package-data@5.0.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.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-bundled@3.0.1", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-packlist@7.0.4", + "target": "npm:ignore-walk@6.0.5", + "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@3.0.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg@10.1.0", + "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@10.1.0", + "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", + "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", + "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:npm-run-path", + "target": "npm:path-key@3.1.1", + "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:nx@16.10.0", + "target": "npm:@nrwl/tao@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@zkochan/js-yaml@0.0.6", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:dotenv@16.3.2", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:dotenv-expand@10.0.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:enquirer@2.3.6", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:v8-compile-cache@2.3.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-darwin-arm64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-darwin-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-freebsd-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-x64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-win32-x64-msvc@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@napi-rs/wasm-runtime", + "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.7.7", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk@4.1.2", + "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@2.3.6", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:front-matter", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "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@9.0.3", + "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:ora", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.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:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser@21.1.1", + "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:nyc", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:caching-transform", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-hook", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-processinfo", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:node-preload", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:process-on-spawn", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:spawn-wrap", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:yargs", + "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.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.fromentries", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:es-abstract", + "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-object-atoms", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:one-time", + "target": "npm:fn.name", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners@2.9.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "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:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners@2.9.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:p-filter", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit@3.1.0", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + }, + { + "source": "npm:p-locate", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit@3.1.0", + "type": "static" + }, + { + "source": "npm:p-map@3.0.0", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:p-waterfall", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:hasha", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:lodash.flattendeep", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:release-zalgo", + "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@10.1.0", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist@7.0.4", + "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@10.0.6", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:parent-module", + "target": "npm:callsites", + "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: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@2.3.1", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + }, + { + "source": "npm:parse-path", + "target": "npm:protocols", + "type": "static" + }, + { + "source": "npm:parse-url", + "target": "npm:parse-path", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.1.2", + "type": "static" + }, + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.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: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:preferred-pm", + "target": "npm:find-up@5.0.0", + "type": "static" + }, + { + "source": "npm:preferred-pm", + "target": "npm:find-yarn-workspace-root2", + "type": "static" + }, + { + "source": "npm:preferred-pm", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:preferred-pm", + "target": "npm:which-pm", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:react-is@16.13.1", + "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:process-on-spawn", + "target": "npm:fromentries", + "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@3.0.3", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:promzard", + "target": "npm:read@3.0.1", + "type": "static" + }, + { + "source": "npm:proxyquire", + "target": "npm:fill-keys", + "type": "static" + }, + { + "source": "npm:proxyquire", + "target": "npm:module-not-found-error", + "type": "static" + }, + { + "source": "npm:proxyquire", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:glob@10.4.5", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:read-pkg-up@7.0.1", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:read-pkg-up@7.0.1", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@7.0.1", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:load-json-file@4.0.0", + "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@5.2.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:type-fest@0.6.0", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + }, + { + "source": "npm:read", + "target": "npm:mute-stream@1.0.0", + "type": "static" + }, + { + "source": "npm:read@3.0.1", + "target": "npm:mute-stream@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.3.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:rechoir", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "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:es-errors", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:release-zalgo", + "target": "npm:es6-error", + "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@2.3.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:har-validator", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:http-signature", + "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", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tough-cookie@2.5.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:require-in-the-middle", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:require-in-the-middle", + "target": "npm:module-details-from-path", + "type": "static" + }, + { + "source": "npm:require-in-the-middle", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:resolve-global", + "target": "npm:global-dirs", + "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:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@4.4.1", + "target": "npm:glob@9.3.5", + "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", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "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@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:function-bind", + "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:es-errors", + "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:shallow-clone", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + }, + { + "source": "npm:shebang-command@2.0.0", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:shx", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:shx", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "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:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:simple-git", + "target": "npm:@kwsites/file-exists", + "type": "static" + }, + { + "source": "npm:simple-git", + "target": "npm:@kwsites/promise-deferred", + "type": "static" + }, + { + "source": "npm:simple-git", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.2", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@4.3.0", + "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: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", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:breakword", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:grapheme-splitter", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:yargs", + "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:socks", + "target": "npm:ip-address", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:sort-any", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj", + "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", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.21", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.21", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:spawndamnit", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:spawndamnit", + "target": "npm:signal-exit", + "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:split2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:split", + "target": "npm:through", + "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@10.0.6", + "target": "npm:minipass@7.1.2", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:stack-generator", + "target": "npm:stackframe", + "type": "static" + }, + { + "source": "npm:stack-utils@1.0.5", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + }, + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + }, + { + "source": "npm:stacktrace-gps", + "target": "npm:source-map@0.5.6", + "type": "static" + }, + { + "source": "npm:stacktrace-gps", + "target": "npm:stackframe", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stack-generator", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stacktrace-gps", + "type": "static" + }, + { + "source": "npm:stream-transform", + "target": "npm:mixme", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:date-format", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:fs-extra@8.1.0", + "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-replace-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:string-replace-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:string-replace-loader", + "target": "npm:webpack", + "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-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: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.padend", + "target": "npm:es-object-atoms", + "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.trim", + "target": "npm:es-object-atoms", + "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-object-atoms", + "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-object-atoms", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:string_decoder@1.3.0", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:get-own-enumerable-property-symbols", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-regexp", + "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:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.1.0", + "type": "static" + }, + { + "source": "npm:strip-bom-buf", + "target": "npm:is-utf8", + "type": "static" + }, + { + "source": "npm:strip-bom-stream", + "target": "npm:first-chunk-stream", + "type": "static" + }, + { + "source": "npm:strip-bom-stream", + "target": "npm:strip-bom@2.0.0", + "type": "static" + }, + { + "source": "npm:strip-bom@2.0.0", + "target": "npm:is-utf8", + "type": "static" + }, + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "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:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi", + "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", + "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@3.3.6", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tempfile", + "target": "npm:temp-dir@2.0.0", + "type": "static" + }, + { + "source": "npm:tempfile", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:esbuild", + "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", + "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:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support@0.5.21", + "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:thenify-all", + "target": "npm:thenify", + "type": "static" + }, + { + "source": "npm:thenify", + "target": "npm:any-promise", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:timers-ext", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:timers-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:tmp-promise", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:tough-cookie@2.5.0", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie@2.5.0", + "target": "npm:punycode", + "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@3.0.0", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest", + "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:typescript", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "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:source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:strip-bom@3.0.0", + "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:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:csv", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:smartwrap", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:yargs@17.7.2", + "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:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:es-errors", + "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:gopd", + "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:gopd", + "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:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:possible-typed-array-names", + "type": "static" + }, + { + "source": "npm:typedarray-to-buffer", + "target": "npm:is-typedarray", + "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:unique-filename@2.0.1", + "target": "npm:unique-slug@3.0.0", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-slug@3.0.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:binary", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:buffer-indexof-polyfill", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:duplexer2", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:fstream", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:listenercount", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:setimmediate", + "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:update-ts-references", + "target": "npm:@formatjs/cli", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:comment-json", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:mkdirp", + "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@3.0.0", + "target": "npm:builtins@1.0.3", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "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:vinyl-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:pify@2.3.0", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:strip-bom-buf", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:strip-bom-stream", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-buffer", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-stats", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:cloneable-readable", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vscode-languageclient", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:vscode-languageclient", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:vscode-languageclient", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + }, + { + "source": "npm:vscode-languageserver-protocol", + "target": "npm:vscode-jsonrpc", + "type": "static" + }, + { + "source": "npm:vscode-languageserver-protocol", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "npm:vscode-languageserver", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:unzipper", + "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:wcwidth", + "target": "npm:defaults", + "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@8.12.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-attributes", + "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", + "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@2.3.1", + "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", + "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:whatwg-encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@11.0.0", + "target": "npm:tr46@3.0.0", + "type": "static" + }, + { + "source": "npm:whatwg-url@11.0.0", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions@3.0.1", + "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-pm", + "target": "npm:load-yaml-file", + "type": "static" + }, + { + "source": "npm:which-pm", + "target": "npm:path-exists", + "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@1.3.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:winston-transport", + "target": "npm:logform", + "type": "static" + }, + { + "source": "npm:winston-transport", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:winston-transport", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:winston-transport@4.6.0", + "target": "npm:logform", + "type": "static" + }, + { + "source": "npm:winston-transport@4.6.0", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:winston-transport@4.6.0", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:@dabh/diagnostics", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:logform", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:one-time", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:stack-trace", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:winston-transport@4.6.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: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: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:write-file-atomic@2.4.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:typedarray-to-buffer", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:detect-indent@5.0.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:write-file-atomic@2.4.3", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:type-fest@0.4.1", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:write-json-file", + "type": "static" + }, + { + "source": "npm:xml-js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@6.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:find-up", + "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:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser@18.1.3", + "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@5.0.8", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:y18n@5.0.8", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ] +} diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json new file mode 100644 index 000000000..f269fc23c --- /dev/null +++ b/.nx/workspace-data/project-graph.json @@ -0,0 +1,35992 @@ +{ + "nodes": { + "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext": { + "name": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", + "type": "lib", + "data": { + "root": "packages/vscode-ui5-language-assistant-bas-ext", + "sourceRoot": "packages/vscode-ui5-language-assistant-bas-ext", + "name": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", + "tags": ["npm:public"], + "metadata": { + "targetGroups": { + "NPM Scripts": ["ci", "clean"] + }, + "description": "A wrapper module for BAS simple extension around Language Support For SAPUI5" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "node ./scripts/copy", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./dist ./lib ./coverage ./nyc_output *.vsix NOTICE LICENSE", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "nx-release-publish": { + "executor": "@nx/js:release-publish", + "dependsOn": ["^nx-release-publish"], + "options": {}, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "vscode-ui5-language-assistant": { + "name": "vscode-ui5-language-assistant", + "type": "lib", + "data": { + "root": "packages/vscode-ui5-language-assistant", + "sourceRoot": "packages/vscode-ui5-language-assistant", + "name": "vscode-ui5-language-assistant", + "tags": ["npm:private", "npm:UI5", "npm:OpenUI5", "npm:SAPUI5"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test:integration", + "test:unit", + "coverage:unit", + "bundle", + "package", + "update:schema" + ] + }, + "description": "Language Support For SAPUI5" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage:* bundle package", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./dist ./lib ./coverage *.vsix NOTICE LICENSE", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test:integration": { + "executor": "nx:run-script", + "options": { + "script": "test:integration" + }, + "metadata": { + "scriptContent": "node lib/test/run-integration-tests.js", + "runCommand": "pnpm run test:integration" + }, + "configurations": {}, + "parallelism": true + }, + "test:unit": { + "executor": "nx:run-script", + "options": { + "script": "test:unit" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test:unit" + }, + "configurations": {}, + "parallelism": true + }, + "coverage:unit": { + "executor": "nx:run-script", + "options": { + "script": "coverage:unit" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage:unit" + }, + "configurations": {}, + "parallelism": true + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "metadata": { + "scriptContent": "node esbuild.js", + "runCommand": "pnpm run bundle" + }, + "configurations": {}, + "parallelism": true + }, + "package": { + "executor": "nx:run-script", + "options": { + "script": "package" + }, + "metadata": { + "scriptContent": "node ./scripts/package-vsix", + "runCommand": "pnpm run package" + }, + "configurations": {}, + "parallelism": true + }, + "update:schema": { + "executor": "nx:run-script", + "options": { + "script": "update:schema" + }, + "metadata": { + "scriptContent": "ts-node --project tsconfig.cli.json scripts/manifest/run-update.ts", + "runCommand": "pnpm run update:schema" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/semantic-model-types": { + "name": "@ui5-language-assistant/semantic-model-types", + "type": "lib", + "data": { + "root": "packages/semantic-model-types", + "sourceRoot": "packages/semantic-model-types", + "name": "@ui5-language-assistant/semantic-model-types", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "UI5 Semantic model type definitions" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "echo \"nothing to clean\"", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "echo nothing to test", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "echo nothing to test", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/xml-views-completion": { + "name": "@ui5-language-assistant/xml-views-completion", + "type": "lib", + "data": { + "root": "packages/xml-views-completion", + "sourceRoot": "packages/xml-views-completion", + "name": "@ui5-language-assistant/xml-views-completion", + "tags": [ + "npm:private", + "npm:xml", + "npm:ui5", + "npm:openui5", + "npm:content-assist" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "Auto-Complete Logic for UI5 XML-Views" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/xml-views-definition": { + "name": "@ui5-language-assistant/xml-views-definition", + "type": "lib", + "data": { + "root": "packages/xml-views-definition", + "sourceRoot": "packages/xml-views-definition", + "name": "@ui5-language-assistant/xml-views-definition", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "Definition logic for UI5 XML-Views" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/xml-views-validation": { + "name": "@ui5-language-assistant/xml-views-validation", + "type": "lib", + "data": { + "root": "packages/xml-views-validation", + "sourceRoot": "packages/xml-views-validation", + "name": "@ui5-language-assistant/xml-views-validation", + "tags": [ + "npm:private", + "npm:xml", + "npm:ui5", + "npm:openui5", + "npm:validations" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "Validations Logic for UI5 XML-Views" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/xml-views-quick-fix": { + "name": "@ui5-language-assistant/xml-views-quick-fix", + "type": "lib", + "data": { + "root": "packages/xml-views-quick-fix", + "sourceRoot": "packages/xml-views-quick-fix", + "name": "@ui5-language-assistant/xml-views-quick-fix", + "tags": ["npm:private", "npm:QuickFix"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "Logic for UI5 XML-Views quick-fixes" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/xml-views-tooltip": { + "name": "@ui5-language-assistant/xml-views-tooltip", + "type": "lib", + "data": { + "root": "packages/xml-views-tooltip", + "sourceRoot": "packages/xml-views-tooltip", + "name": "@ui5-language-assistant/xml-views-tooltip", + "tags": ["npm:private", "npm:Hover", "npm:tooltip"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "XML Views Tooltip" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/user-facing-text": { + "name": "@ui5-language-assistant/user-facing-text", + "type": "lib", + "data": { + "root": "packages/user-facing-text", + "sourceRoot": "packages/user-facing-text", + "name": "@ui5-language-assistant/user-facing-text", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "End user strings for UI5 Language Assistant" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/language-server": { + "name": "@ui5-language-assistant/language-server", + "type": "lib", + "data": { + "root": "packages/language-server", + "sourceRoot": "packages/language-server", + "name": "@ui5-language-assistant/language-server", + "tags": [ + "npm:private", + "npm:LSP", + "npm:language-server", + "npm:UI5", + "npm:OpenUI5", + "npm:SAPUI5" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage", + "update-snapshots", + "bundle" + ] + }, + "description": "UI5 Language Server" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage bundle", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./dist ./lib ./coverage ", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "metadata": { + "scriptContent": "node ./scripts/update-diagnostics-snapshots", + "runCommand": "pnpm run update-snapshots" + }, + "configurations": {}, + "parallelism": true + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "metadata": { + "scriptContent": "node esbuild.js", + "runCommand": "pnpm run bundle" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/test-utils": { + "name": "@ui5-language-assistant/test-utils", + "type": "lib", + "data": { + "root": "test-packages/test-utils", + "sourceRoot": "test-packages/test-utils", + "name": "@ui5-language-assistant/test-utils", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": ["ci", "clean", "compile", "compile:watch", "lint"] + }, + "description": "Test Utils" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output ./.model-cache", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/binding-parser": { + "name": "@ui5-language-assistant/binding-parser", + "type": "lib", + "data": { + "root": "packages/binding-parser", + "sourceRoot": "packages/binding-parser", + "name": "@ui5-language-assistant/binding-parser", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage", + "format:fix", + "test:update", + "test:update-data" + ] + }, + "description": "Parser for binding syntax" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + }, + "format:fix": { + "executor": "nx:run-script", + "options": { + "script": "format:fix" + }, + "metadata": { + "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", + "runCommand": "pnpm run format:fix" + }, + "configurations": {}, + "parallelism": true + }, + "test:update": { + "executor": "nx:run-script", + "options": { + "script": "test:update" + }, + "metadata": { + "scriptContent": "cross-env TEST_UPDATE=true npm-run-all compile test:update-data", + "runCommand": "pnpm run test:update" + }, + "configurations": {}, + "parallelism": true + }, + "test:update-data": { + "executor": "nx:run-script", + "options": { + "script": "test:update-data" + }, + "metadata": { + "scriptContent": "node scripts/updateTestData.js", + "runCommand": "pnpm run test:update-data" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/semantic-model": { + "name": "@ui5-language-assistant/semantic-model", + "type": "lib", + "data": { + "root": "packages/semantic-model", + "sourceRoot": "packages/semantic-model", + "name": "@ui5-language-assistant/semantic-model", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage", + "generate-json-api" + ] + }, + "description": "Semantic model provider for UI5" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean generate-json-api compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + }, + "generate-json-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-json-api" + }, + "metadata": { + "scriptContent": "json2ts -i ./resources/sap-ui-library-api.json -o ./src/api-json.d.ts --no-unknownAny --bannerComment \"/* This file is automatically generated. DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file (sap-ui-library-api.json) and run generate-json-api from the package.json to regenerate this file. */\" && prettier --write ./src/api-json.d.ts", + "runCommand": "pnpm run generate-json-api" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/test-framework": { + "name": "@ui5-language-assistant/test-framework", + "type": "lib", + "data": { + "root": "test-packages/framework", + "sourceRoot": "test-packages/framework", + "name": "@ui5-language-assistant/test-framework", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test" + ] + }, + "description": "Test Framework" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint test", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./.model-cache *.tsbuildinfo", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/logic-utils": { + "name": "@ui5-language-assistant/logic-utils", + "type": "lib", + "data": { + "root": "packages/logic-utils", + "sourceRoot": "packages/logic-utils", + "name": "@ui5-language-assistant/logic-utils", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "TBD" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/constant": { + "name": "@ui5-language-assistant/constant", + "type": "lib", + "data": { + "root": "packages/constant", + "sourceRoot": "packages/constant", + "name": "@ui5-language-assistant/constant", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "format:fix" + ] + }, + "description": "constant variables used across packages" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "echo nothing to test", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "format:fix": { + "executor": "nx:run-script", + "options": { + "script": "format:fix" + }, + "metadata": { + "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", + "runCommand": "pnpm run format:fix" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/settings": { + "name": "@ui5-language-assistant/settings", + "type": "lib", + "data": { + "root": "packages/settings", + "sourceRoot": "packages/settings", + "name": "@ui5-language-assistant/settings", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "Settings for UI5 Language Assistant" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/binding": { + "name": "@ui5-language-assistant/binding", + "type": "lib", + "data": { + "root": "packages/binding", + "sourceRoot": "packages/binding", + "name": "@ui5-language-assistant/binding", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage", + "format:fix" + ] + }, + "description": "UI5 LSP server extension for binding" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + }, + "format:fix": { + "executor": "nx:run-script", + "options": { + "script": "format:fix" + }, + "metadata": { + "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", + "runCommand": "pnpm run format:fix" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/context": { + "name": "@ui5-language-assistant/context", + "type": "lib", + "data": { + "root": "packages/context", + "sourceRoot": "packages/context", + "name": "@ui5-language-assistant/context", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "A context for an xml file" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/logger": { + "name": "@ui5-language-assistant/logger", + "type": "lib", + "data": { + "root": "packages/logger", + "sourceRoot": "packages/logger", + "name": "@ui5-language-assistant/logger", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage" + ] + }, + "description": "A logger package" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage ./nyc_output", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@ui5-language-assistant/fe": { + "name": "@ui5-language-assistant/fe", + "type": "lib", + "data": { + "root": "packages/fe", + "sourceRoot": "packages/fe", + "name": "@ui5-language-assistant/fe", + "tags": ["npm:private"], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "ci", + "clean", + "compile", + "compile:watch", + "lint", + "test", + "coverage", + "format:fix" + ] + }, + "description": "UI5 LSP server extension for annotation relevant building blocks" + }, + "targets": { + "ci": { + "executor": "nx:run-script", + "options": { + "script": "ci" + }, + "metadata": { + "scriptContent": "npm-run-all clean compile lint coverage", + "runCommand": "pnpm run ci" + }, + "configurations": {}, + "parallelism": true + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "metadata": { + "scriptContent": "rimraf ./lib ./coverage", + "runCommand": "pnpm run clean" + }, + "configurations": {}, + "parallelism": true + }, + "compile": { + "executor": "nx:run-script", + "options": { + "script": "compile" + }, + "metadata": { + "scriptContent": "pnpm run clean && tsc -p .", + "runCommand": "pnpm run compile" + }, + "configurations": {}, + "parallelism": true + }, + "compile:watch": { + "executor": "nx:run-script", + "options": { + "script": "compile:watch" + }, + "metadata": { + "scriptContent": "tsc -p . --watch", + "runCommand": "pnpm run compile:watch" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "metadata": { + "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", + "runCommand": "pnpm run lint" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true + }, + "coverage": { + "executor": "nx:run-script", + "options": { + "script": "coverage" + }, + "metadata": { + "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", + "runCommand": "pnpm run coverage" + }, + "configurations": {}, + "parallelism": true + }, + "format:fix": { + "executor": "nx:run-script", + "options": { + "script": "format:fix" + }, + "metadata": { + "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", + "runCommand": "pnpm run format:fix" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + } + }, + "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:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.3.0", + "packageName": "@ampproject/remapping", + "hash": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" + } + }, + "npm:@apidevtools/json-schema-ref-parser": { + "type": "npm", + "name": "npm:@apidevtools/json-schema-ref-parser", + "data": { + "version": "9.0.9", + "packageName": "@apidevtools/json-schema-ref-parser", + "hash": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==" + } + }, + "npm:@azure/abort-controller@1.1.0": { + "type": "npm", + "name": "npm:@azure/abort-controller@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "@azure/abort-controller", + "hash": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==" + } + }, + "npm:@azure/abort-controller": { + "type": "npm", + "name": "npm:@azure/abort-controller", + "data": { + "version": "2.1.2", + "packageName": "@azure/abort-controller", + "hash": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==" + } + }, + "npm:@azure/core-auth": { + "type": "npm", + "name": "npm:@azure/core-auth", + "data": { + "version": "1.8.0", + "packageName": "@azure/core-auth", + "hash": "sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==" + } + }, + "npm:@azure/core-rest-pipeline": { + "type": "npm", + "name": "npm:@azure/core-rest-pipeline", + "data": { + "version": "1.10.1", + "packageName": "@azure/core-rest-pipeline", + "hash": "sha512-Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==" + } + }, + "npm:@azure/core-tracing": { + "type": "npm", + "name": "npm:@azure/core-tracing", + "data": { + "version": "1.2.0", + "packageName": "@azure/core-tracing", + "hash": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==" + } + }, + "npm:@azure/core-util": { + "type": "npm", + "name": "npm:@azure/core-util", + "data": { + "version": "1.2.0", + "packageName": "@azure/core-util", + "hash": "sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==" + } + }, + "npm:@azure/logger": { + "type": "npm", + "name": "npm:@azure/logger", + "data": { + "version": "1.1.4", + "packageName": "@azure/logger", + "hash": "sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==" + } + }, + "npm:@azure/opentelemetry-instrumentation-azure-sdk": { + "type": "npm", + "name": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "data": { + "version": "1.0.0-beta.6", + "packageName": "@azure/opentelemetry-instrumentation-azure-sdk", + "hash": "sha512-JP6TJ7vDNX6r0gN2+EQBINTNqZ86frl1RAj5STtbLP1ClgIhcdXXb0hvq7CuEOv7InrroHMDoEYG80OQcWChug==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.24.7", + "packageName": "@babel/code-frame", + "hash": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==" + } + }, + "npm:@babel/code-frame@7.25.7": { + "type": "npm", + "name": "npm:@babel/code-frame@7.25.7", + "data": { + "version": "7.25.7", + "packageName": "@babel/code-frame", + "hash": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.25.7", + "packageName": "@babel/compat-data", + "hash": "sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.25.7", + "packageName": "@babel/core", + "hash": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.25.7", + "packageName": "@babel/generator", + "hash": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==" + } + }, + "npm:@babel/helper-validator-identifier@7.24.7": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier@7.24.7", + "data": { + "version": "7.24.7", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.25.7", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.25.7", + "packageName": "@babel/helpers", + "hash": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.24.7", + "packageName": "@babel/highlight", + "hash": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==" + } + }, + "npm:@babel/highlight@7.25.7": { + "type": "npm", + "name": "npm:@babel/highlight@7.25.7", + "data": { + "version": "7.25.7", + "packageName": "@babel/highlight", + "hash": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.25.7", + "packageName": "@babel/parser", + "hash": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==" + } + }, + "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-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.25.7", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==" + } + }, + "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.25.7", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==" + } + }, + "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.25.7", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.25.7", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.8", + "packageName": "@babel/runtime", + "hash": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.25.7", + "packageName": "@babel/template", + "hash": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.25.7", + "packageName": "@babel/traverse", + "hash": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.25.7", + "packageName": "@babel/types", + "hash": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@changesets/apply-release-plan": { + "type": "npm", + "name": "npm:@changesets/apply-release-plan", + "data": { + "version": "6.1.4", + "packageName": "@changesets/apply-release-plan", + "hash": "sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==" + } + }, + "npm:@changesets/assemble-release-plan": { + "type": "npm", + "name": "npm:@changesets/assemble-release-plan", + "data": { + "version": "5.2.4", + "packageName": "@changesets/assemble-release-plan", + "hash": "sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==" + } + }, + "npm:@changesets/changelog-git": { + "type": "npm", + "name": "npm:@changesets/changelog-git", + "data": { + "version": "0.1.14", + "packageName": "@changesets/changelog-git", + "hash": "sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==" + } + }, + "npm:@changesets/cli": { + "type": "npm", + "name": "npm:@changesets/cli", + "data": { + "version": "2.26.0", + "packageName": "@changesets/cli", + "hash": "sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==" + } + }, + "npm:@changesets/config": { + "type": "npm", + "name": "npm:@changesets/config", + "data": { + "version": "2.3.1", + "packageName": "@changesets/config", + "hash": "sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==" + } + }, + "npm:@changesets/errors": { + "type": "npm", + "name": "npm:@changesets/errors", + "data": { + "version": "0.1.4", + "packageName": "@changesets/errors", + "hash": "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==" + } + }, + "npm:@changesets/get-dependents-graph": { + "type": "npm", + "name": "npm:@changesets/get-dependents-graph", + "data": { + "version": "1.3.6", + "packageName": "@changesets/get-dependents-graph", + "hash": "sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==" + } + }, + "npm:@changesets/get-release-plan": { + "type": "npm", + "name": "npm:@changesets/get-release-plan", + "data": { + "version": "3.0.17", + "packageName": "@changesets/get-release-plan", + "hash": "sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==" + } + }, + "npm:@changesets/get-version-range-type": { + "type": "npm", + "name": "npm:@changesets/get-version-range-type", + "data": { + "version": "0.3.2", + "packageName": "@changesets/get-version-range-type", + "hash": "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==" + } + }, + "npm:@changesets/git": { + "type": "npm", + "name": "npm:@changesets/git", + "data": { + "version": "2.0.0", + "packageName": "@changesets/git", + "hash": "sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==" + } + }, + "npm:@changesets/logger": { + "type": "npm", + "name": "npm:@changesets/logger", + "data": { + "version": "0.0.5", + "packageName": "@changesets/logger", + "hash": "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==" + } + }, + "npm:@changesets/parse": { + "type": "npm", + "name": "npm:@changesets/parse", + "data": { + "version": "0.3.16", + "packageName": "@changesets/parse", + "hash": "sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==" + } + }, + "npm:@changesets/pre": { + "type": "npm", + "name": "npm:@changesets/pre", + "data": { + "version": "1.0.14", + "packageName": "@changesets/pre", + "hash": "sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==" + } + }, + "npm:@changesets/read": { + "type": "npm", + "name": "npm:@changesets/read", + "data": { + "version": "0.5.9", + "packageName": "@changesets/read", + "hash": "sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==" + } + }, + "npm:@changesets/types@4.1.0": { + "type": "npm", + "name": "npm:@changesets/types@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "@changesets/types", + "hash": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==" + } + }, + "npm:@changesets/types": { + "type": "npm", + "name": "npm:@changesets/types", + "data": { + "version": "5.2.1", + "packageName": "@changesets/types", + "hash": "sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==" + } + }, + "npm:@changesets/write": { + "type": "npm", + "name": "npm:@changesets/write", + "data": { + "version": "0.2.3", + "packageName": "@changesets/write", + "hash": "sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==" + } + }, + "npm:@chevrotain/cst-dts-gen": { + "type": "npm", + "name": "npm:@chevrotain/cst-dts-gen", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/cst-dts-gen", + "hash": "sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==" + } + }, + "npm:@chevrotain/gast": { + "type": "npm", + "name": "npm:@chevrotain/gast", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/gast", + "hash": "sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==" + } + }, + "npm:@chevrotain/types": { + "type": "npm", + "name": "npm:@chevrotain/types", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/types", + "hash": "sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==" + } + }, + "npm:@chevrotain/utils": { + "type": "npm", + "name": "npm:@chevrotain/utils", + "data": { + "version": "10.4.2", + "packageName": "@chevrotain/utils", + "hash": "sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.6.0", + "packageName": "@colors/colors", + "hash": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" + } + }, + "npm:@commitlint/cli": { + "type": "npm", + "name": "npm:@commitlint/cli", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/cli", + "hash": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==" + } + }, + "npm:@commitlint/config-conventional": { + "type": "npm", + "name": "npm:@commitlint/config-conventional", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/config-conventional", + "hash": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==" + } + }, + "npm:@commitlint/config-validator": { + "type": "npm", + "name": "npm:@commitlint/config-validator", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/config-validator", + "hash": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==" + } + }, + "npm:@commitlint/ensure": { + "type": "npm", + "name": "npm:@commitlint/ensure", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/ensure", + "hash": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==" + } + }, + "npm:@commitlint/execute-rule": { + "type": "npm", + "name": "npm:@commitlint/execute-rule", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/execute-rule", + "hash": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==" + } + }, + "npm:@commitlint/execute-rule@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/execute-rule@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/execute-rule", + "hash": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==" + } + }, + "npm:@commitlint/format": { + "type": "npm", + "name": "npm:@commitlint/format", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/format", + "hash": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==" + } + }, + "npm:@commitlint/is-ignored": { + "type": "npm", + "name": "npm:@commitlint/is-ignored", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/is-ignored", + "hash": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==" + } + }, + "npm:@commitlint/lint": { + "type": "npm", + "name": "npm:@commitlint/lint", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/lint", + "hash": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==" + } + }, + "npm:@commitlint/load": { + "type": "npm", + "name": "npm:@commitlint/load", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/load", + "hash": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==" + } + }, + "npm:@commitlint/load@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/load@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/load", + "hash": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==" + } + }, + "npm:@commitlint/message": { + "type": "npm", + "name": "npm:@commitlint/message", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/message", + "hash": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==" + } + }, + "npm:@commitlint/parse": { + "type": "npm", + "name": "npm:@commitlint/parse", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/parse", + "hash": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==" + } + }, + "npm:@commitlint/read": { + "type": "npm", + "name": "npm:@commitlint/read", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/read", + "hash": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==" + } + }, + "npm:@commitlint/resolve-extends": { + "type": "npm", + "name": "npm:@commitlint/resolve-extends", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/resolve-extends", + "hash": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==" + } + }, + "npm:@commitlint/resolve-extends@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/resolve-extends@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/resolve-extends", + "hash": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==" + } + }, + "npm:@commitlint/rules": { + "type": "npm", + "name": "npm:@commitlint/rules", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/rules", + "hash": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==" + } + }, + "npm:@commitlint/to-lines": { + "type": "npm", + "name": "npm:@commitlint/to-lines", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/to-lines", + "hash": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==" + } + }, + "npm:@commitlint/top-level": { + "type": "npm", + "name": "npm:@commitlint/top-level", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/top-level", + "hash": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==" + } + }, + "npm:@commitlint/types": { + "type": "npm", + "name": "npm:@commitlint/types", + "data": { + "version": "11.0.0", + "packageName": "@commitlint/types", + "hash": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==" + } + }, + "npm:@commitlint/types@19.5.0": { + "type": "npm", + "name": "npm:@commitlint/types@19.5.0", + "data": { + "version": "19.5.0", + "packageName": "@commitlint/types", + "hash": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==" + } + }, + "npm:@dabh/diagnostics": { + "type": "npm", + "name": "npm:@dabh/diagnostics", + "data": { + "version": "2.0.3", + "packageName": "@dabh/diagnostics", + "hash": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==" + } + }, + "npm:@emnapi/core": { + "type": "npm", + "name": "npm:@emnapi/core", + "data": { + "version": "1.3.0", + "packageName": "@emnapi/core", + "hash": "sha512-9hRqVlhwqBqCoToZ3hFcNVqL+uyHV06Y47ax4UB8L6XgVRqYz7MFnfessojo6+5TK89pKwJnpophwjTMOeKI9Q==" + } + }, + "npm:@emnapi/runtime": { + "type": "npm", + "name": "npm:@emnapi/runtime", + "data": { + "version": "1.3.0", + "packageName": "@emnapi/runtime", + "hash": "sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==" + } + }, + "npm:@emnapi/wasi-threads": { + "type": "npm", + "name": "npm:@emnapi/wasi-threads", + "data": { + "version": "1.0.1", + "packageName": "@emnapi/wasi-threads", + "hash": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==" + } + }, + "npm:@esbuild/android-arm64": { + "type": "npm", + "name": "npm:@esbuild/android-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==" + } + }, + "npm:@esbuild/android-arm": { + "type": "npm", + "name": "npm:@esbuild/android-arm", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/android-arm", + "hash": "sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==" + } + }, + "npm:@esbuild/android-x64": { + "type": "npm", + "name": "npm:@esbuild/android-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/android-x64", + "hash": "sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==" + } + }, + "npm:@esbuild/darwin-arm64": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==" + } + }, + "npm:@esbuild/darwin-x64": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==" + } + }, + "npm:@esbuild/freebsd-arm64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==" + } + }, + "npm:@esbuild/freebsd-x64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==" + } + }, + "npm:@esbuild/linux-arm64": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==" + } + }, + "npm:@esbuild/linux-arm": { + "type": "npm", + "name": "npm:@esbuild/linux-arm", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==" + } + }, + "npm:@esbuild/linux-ia32": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==" + } + }, + "npm:@esbuild/linux-loong64": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==" + } + }, + "npm:@esbuild/linux-mips64el": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==" + } + }, + "npm:@esbuild/linux-ppc64": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==" + } + }, + "npm:@esbuild/linux-riscv64": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==" + } + }, + "npm:@esbuild/linux-s390x": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==" + } + }, + "npm:@esbuild/netbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==" + } + }, + "npm:@esbuild/openbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==" + } + }, + "npm:@esbuild/sunos-x64": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==" + } + }, + "npm:@esbuild/win32-arm64": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==" + } + }, + "npm:@esbuild/win32-ia32": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.17.12", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "0.3.0", + "packageName": "@eslint/eslintrc", + "hash": "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==" + } + }, + "npm:@formatjs/cli": { + "type": "npm", + "name": "npm:@formatjs/cli", + "data": { + "version": "2.15.0", + "packageName": "@formatjs/cli", + "hash": "sha512-Hv7Z3xeGcgTpn1jA1/x7tc9UYbF9Udn/77xRf7E22Vn1mGJM/DftVqnpgLeNpd0d3xSftYw+rhaShNO19BsT6A==" + } + }, + "npm:@formatjs/ecma402-abstract": { + "type": "npm", + "name": "npm:@formatjs/ecma402-abstract", + "data": { + "version": "1.5.0", + "packageName": "@formatjs/ecma402-abstract", + "hash": "sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==" + } + }, + "npm:@formatjs/ts-transformer": { + "type": "npm", + "name": "npm:@formatjs/ts-transformer", + "data": { + "version": "2.13.0", + "packageName": "@formatjs/ts-transformer", + "hash": "sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==" + } + }, + "npm:@gar/promisify": { + "type": "npm", + "name": "npm:@gar/promisify", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@hutson/parse-repository-url": { + "type": "npm", + "name": "npm:@hutson/parse-repository-url", + "data": { + "version": "3.0.2", + "packageName": "@hutson/parse-repository-url", + "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "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-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "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@25.5.0": { + "type": "npm", + "name": "npm:@jest/types@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "@jest/types", + "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" + } + }, + "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.5", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.2", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.2.1", + "packageName": "@jridgewell/set-array", + "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.6", + "packageName": "@jridgewell/source-map", + "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.5.0", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.25", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" + } + }, + "npm:@jsdevtools/ono": { + "type": "npm", + "name": "npm:@jsdevtools/ono", + "data": { + "version": "7.1.3", + "packageName": "@jsdevtools/ono", + "hash": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" + } + }, + "npm:@kwsites/file-exists": { + "type": "npm", + "name": "npm:@kwsites/file-exists", + "data": { + "version": "1.1.1", + "packageName": "@kwsites/file-exists", + "hash": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==" + } + }, + "npm:@kwsites/promise-deferred": { + "type": "npm", + "name": "npm:@kwsites/promise-deferred", + "data": { + "version": "1.1.1", + "packageName": "@kwsites/promise-deferred", + "hash": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==" + } + }, + "npm:@lerna/child-process": { + "type": "npm", + "name": "npm:@lerna/child-process", + "data": { + "version": "7.4.2", + "packageName": "@lerna/child-process", + "hash": "sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==" + } + }, + "npm:@lerna/create": { + "type": "npm", + "name": "npm:@lerna/create", + "data": { + "version": "7.4.2", + "packageName": "@lerna/create", + "hash": "sha512-1wplFbQ52K8E/unnqB0Tq39Z4e+NEoNrpovEnl6GpsTUrC6WDp8+w0Le2uCBV0hXyemxChduCkLz4/y1H1wTeg==" + } + }, + "npm:@manypkg/find-root": { + "type": "npm", + "name": "npm:@manypkg/find-root", + "data": { + "version": "1.1.0", + "packageName": "@manypkg/find-root", + "hash": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==" + } + }, + "npm:@manypkg/get-packages": { + "type": "npm", + "name": "npm:@manypkg/get-packages", + "data": { + "version": "1.1.3", + "packageName": "@manypkg/get-packages", + "hash": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==" + } + }, + "npm:@microsoft/applicationinsights-web-snippet": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-web-snippet", + "data": { + "version": "1.2.1", + "packageName": "@microsoft/applicationinsights-web-snippet", + "hash": "sha512-+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==" + } + }, + "npm:@napi-rs/wasm-runtime": { + "type": "npm", + "name": "npm:@napi-rs/wasm-runtime", + "data": { + "version": "0.2.4", + "packageName": "@napi-rs/wasm-runtime", + "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" + } + }, + "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@2.1.2": { + "type": "npm", + "name": "npm:@npmcli/fs@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "@npmcli/fs", + "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.1", + "packageName": "@npmcli/fs", + "hash": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==" + } + }, + "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/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.1.0", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==" + } + }, + "npm:@npmcli/move-file": { + "type": "npm", + "name": "npm:@npmcli/move-file", + "data": { + "version": "2.0.1", + "packageName": "@npmcli/move-file", + "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" + } + }, + "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/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" + } + }, + "npm:@nrwl/tao@16.10.0": { + "type": "npm", + "name": "npm:@nrwl/tao@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/tao", + "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "19.8.4", + "packageName": "@nrwl/tao", + "hash": "sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nx/devkit", + "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" + } + }, + "npm:@nx/nx-darwin-arm64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ==" + } + }, + "npm:@nx/nx-darwin-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew==" + } + }, + "npm:@nx/nx-freebsd-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-JB4tAuZBCF0yqSnKF3pHXa0b7LA3ebi3Bw08QmMr//ON4aU+eXURGBuj9XvULD2prY+gpBrvf+MsG1XJAHL6Zg==" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ==" + } + }, + "npm:@nx/nx-win32-x64-msvc@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "19.8.4", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "3.0.4", + "packageName": "@octokit/auth-token", + "hash": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "4.2.4", + "packageName": "@octokit/core", + "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "7.0.6", + "packageName": "@octokit/endpoint", + "hash": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "5.0.6", + "packageName": "@octokit/graphql", + "hash": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "18.1.1", + "packageName": "@octokit/openapi-types", + "hash": "sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==" + } + }, + "npm:@octokit/plugin-enterprise-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-enterprise-rest", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-enterprise-rest", + "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "6.1.2", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" + } + }, + "npm:@octokit/plugin-request-log": { + "type": "npm", + "name": "npm:@octokit/plugin-request-log", + "data": { + "version": "1.0.4", + "packageName": "@octokit/plugin-request-log", + "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods", + "data": { + "version": "7.2.3", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "3.0.3", + "packageName": "@octokit/request-error", + "hash": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "6.2.8", + "packageName": "@octokit/request", + "hash": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==" + } + }, + "npm:@octokit/rest": { + "type": "npm", + "name": "npm:@octokit/rest", + "data": { + "version": "19.0.11", + "packageName": "@octokit/rest", + "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" + } + }, + "npm:@octokit/tsconfig": { + "type": "npm", + "name": "npm:@octokit/tsconfig", + "data": { + "version": "1.0.2", + "packageName": "@octokit/tsconfig", + "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" + } + }, + "npm:@octokit/types@10.0.0": { + "type": "npm", + "name": "npm:@octokit/types@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "@octokit/types", + "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "9.3.2", + "packageName": "@octokit/types", + "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" + } + }, + "npm:@opentelemetry/api-logs": { + "type": "npm", + "name": "npm:@opentelemetry/api-logs", + "data": { + "version": "0.52.1", + "packageName": "@opentelemetry/api-logs", + "hash": "sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==" + } + }, + "npm:@opentelemetry/api": { + "type": "npm", + "name": "npm:@opentelemetry/api", + "data": { + "version": "1.9.0", + "packageName": "@opentelemetry/api", + "hash": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==" + } + }, + "npm:@opentelemetry/core": { + "type": "npm", + "name": "npm:@opentelemetry/core", + "data": { + "version": "1.26.0", + "packageName": "@opentelemetry/core", + "hash": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==" + } + }, + "npm:@opentelemetry/instrumentation": { + "type": "npm", + "name": "npm:@opentelemetry/instrumentation", + "data": { + "version": "0.52.1", + "packageName": "@opentelemetry/instrumentation", + "hash": "sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==" + } + }, + "npm:@opentelemetry/resources": { + "type": "npm", + "name": "npm:@opentelemetry/resources", + "data": { + "version": "1.26.0", + "packageName": "@opentelemetry/resources", + "hash": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==" + } + }, + "npm:@opentelemetry/sdk-trace-base": { + "type": "npm", + "name": "npm:@opentelemetry/sdk-trace-base", + "data": { + "version": "1.26.0", + "packageName": "@opentelemetry/sdk-trace-base", + "hash": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==" + } + }, + "npm:@opentelemetry/semantic-conventions": { + "type": "npm", + "name": "npm:@opentelemetry/semantic-conventions", + "data": { + "version": "1.27.0", + "packageName": "@opentelemetry/semantic-conventions", + "hash": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==" + } + }, + "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:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@prettier/plugin-xml": { + "type": "npm", + "name": "npm:@prettier/plugin-xml", + "data": { + "version": "2.2.0", + "packageName": "@prettier/plugin-xml", + "hash": "sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==" + } + }, + "npm:@rtsao/scc": { + "type": "npm", + "name": "npm:@rtsao/scc", + "data": { + "version": "1.1.0", + "packageName": "@rtsao/scc", + "hash": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" + } + }, + "npm:@sap-ux/annotation-converter": { + "type": "npm", + "name": "npm:@sap-ux/annotation-converter", + "data": { + "version": "0.5.20", + "packageName": "@sap-ux/annotation-converter", + "hash": "sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==" + } + }, + "npm:@sap-ux/edmx-parser": { + "type": "npm", + "name": "npm:@sap-ux/edmx-parser", + "data": { + "version": "0.5.13", + "packageName": "@sap-ux/edmx-parser", + "hash": "sha512-V58Iul9fSSMjWs1x7CimGyfnojnYTKcutGstRN4gmz6t4ijXsXQrTMzVetDbZ3EA2UznZtzreVF/8/gXC5MK3A==" + } + }, + "npm:@sap-ux/i18n": { + "type": "npm", + "name": "npm:@sap-ux/i18n", + "data": { + "version": "0.1.0", + "packageName": "@sap-ux/i18n", + "hash": "sha512-v16e/m+DShlqQELz6/VQZ454FeHYr/JbQA20xGT62yKjuvhG1tSKHwBrss8NYT0A9Lr8XxrKZpUZghD0iqY1/A==" + } + }, + "npm:@sap-ux/project-access": { + "type": "npm", + "name": "npm:@sap-ux/project-access", + "data": { + "version": "1.25.5", + "packageName": "@sap-ux/project-access", + "hash": "sha512-ZBUneSOIoX8jRUUf+ffmD37wuIBikKOjmjfmMZ0dn6dp+HoQSSXhnObsP5//51d3stPZ27y40HOHkdOon3CmrQ==" + } + }, + "npm:@sap-ux/ui5-config": { + "type": "npm", + "name": "npm:@sap-ux/ui5-config", + "data": { + "version": "0.23.1", + "packageName": "@sap-ux/ui5-config", + "hash": "sha512-2pfA5GX+Oho1SpRKgWdIiY6tW8L812Jjr/zNiDm27hmua0GKifIUxt5CanN11MB+YAwkg0rJwHH/2aWLeoFiuA==" + } + }, + "npm:@sap-ux/vocabularies-types": { + "type": "npm", + "name": "npm:@sap-ux/vocabularies-types", + "data": { + "version": "0.10.14", + "packageName": "@sap-ux/vocabularies-types", + "hash": "sha512-PtjyRBQbjCFHE1TAXz3DXuyD46eoobAK3BmOsjS60o2dNHMU9EVL1/sbbeiB2917ZV0ARezd3C1BNEict5VXfg==" + } + }, + "npm:@sap-ux/yaml": { + "type": "npm", + "name": "npm:@sap-ux/yaml", + "data": { + "version": "0.16.0", + "packageName": "@sap-ux/yaml", + "hash": "sha512-jojo+NDZyuguUmTznj+yof2luSRarfqR2x09jRoVhS0CT2oJaAxyd60yXRtuCUFW7FbuEii+jSf+aeBU7QSPVw==" + } + }, + "npm:@sap/bas-sdk": { + "type": "npm", + "name": "npm:@sap/bas-sdk", + "data": { + "version": "3.8.9", + "packageName": "@sap/bas-sdk", + "hash": "sha512-ycYttnSTlEPjDrb0svSv0jBgqEvoekD4bNB4IxuKCu5OKk5FycwsOTgufU8CXYf1ag23wTlurN+N7c4Po6PcJQ==" + } + }, + "npm:@sap/swa-for-sapbas-vsx@1.1.9": { + "type": "npm", + "name": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "data": { + "version": "1.1.9", + "packageName": "@sap/swa-for-sapbas-vsx", + "hash": "sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==" + } + }, + "npm:@sap/swa-for-sapbas-vsx": { + "type": "npm", + "name": "npm:@sap/swa-for-sapbas-vsx", + "data": { + "version": "2.0.7", + "packageName": "@sap/swa-for-sapbas-vsx", + "hash": "sha512-EPV6cj5AdCSUp9FLHqKw+nochB5tOjzV840+0pQ1ebEPdzqaQ+e3RjFjqfIrBEZn5yD3EiLPR/3qYTDBh1MarQ==" + } + }, + "npm:@sigstore/bundle": { + "type": "npm", + "name": "npm:@sigstore/bundle", + "data": { + "version": "1.1.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==" + } + }, + "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": "1.0.0", + "packageName": "@sigstore/sign", + "hash": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.3", + "packageName": "@sigstore/tuf", + "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" + } + }, + "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:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.1", + "packageName": "@sinonjs/commons", + "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" + } + }, + "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:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "1.1.2", + "packageName": "@tootallnate/once", + "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + } + }, + "npm:@tootallnate/once@2.0.0": { + "type": "npm", + "name": "npm:@tootallnate/once@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "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/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:@tybys/wasm-util": { + "type": "npm", + "name": "npm:@tybys/wasm-util", + "data": { + "version": "0.9.0", + "packageName": "@tybys/wasm-util", + "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" + } + }, + "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.6", + "packageName": "@types/babel__traverse", + "hash": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==" + } + }, + "npm:@types/chai": { + "type": "npm", + "name": "npm:@types/chai", + "data": { + "version": "5.0.0", + "packageName": "@types/chai", + "hash": "sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==" + } + }, + "npm:@types/conventional-commits-parser": { + "type": "npm", + "name": "npm:@types/conventional-commits-parser", + "data": { + "version": "5.0.0", + "packageName": "@types/conventional-commits-parser", + "hash": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==" + } + }, + "npm:@types/deep-freeze-strict": { + "type": "npm", + "name": "npm:@types/deep-freeze-strict", + "data": { + "version": "1.1.0", + "packageName": "@types/deep-freeze-strict", + "hash": "sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.6", + "packageName": "@types/estree", + "hash": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" + } + }, + "npm:@types/fs-extra": { + "type": "npm", + "name": "npm:@types/fs-extra", + "data": { + "version": "9.0.11", + "packageName": "@types/fs-extra", + "hash": "sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "8.1.0", + "packageName": "@types/glob", + "hash": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==" + } + }, + "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/is-ci": { + "type": "npm", + "name": "npm:@types/is-ci", + "data": { + "version": "3.0.4", + "packageName": "@types/is-ci", + "hash": "sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==" + } + }, + "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@1.1.2": { + "type": "npm", + "name": "npm:@types/istanbul-reports@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "@types/istanbul-reports", + "hash": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==" + } + }, + "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-specific-snapshot": { + "type": "npm", + "name": "npm:@types/jest-specific-snapshot", + "data": { + "version": "0.5.5", + "packageName": "@types/jest-specific-snapshot", + "hash": "sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.2.6", + "packageName": "@types/jest", + "hash": "sha512-XEUC/Tgw3uMh6Ho8GkUtQ2lPhY5Fmgyp3TdlkTJs1W9VgNxs+Ow/x3Elh8lHQKqCbZL0AubQuqWjHVT033Hhrw==" + } + }, + "npm:@types/js-yaml": { + "type": "npm", + "name": "npm:@types/js-yaml", + "data": { + "version": "4.0.5", + "packageName": "@types/js-yaml", + "hash": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==" + } + }, + "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/json-stable-stringify": { + "type": "npm", + "name": "npm:@types/json-stable-stringify", + "data": { + "version": "1.0.36", + "packageName": "@types/json-stable-stringify", + "hash": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:@types/klaw-sync": { + "type": "npm", + "name": "npm:@types/klaw-sync", + "data": { + "version": "6.0.0", + "packageName": "@types/klaw-sync", + "hash": "sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.168", + "packageName": "@types/lodash", + "hash": "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==" + } + }, + "npm:@types/loud-rejection": { + "type": "npm", + "name": "npm:@types/loud-rejection", + "data": { + "version": "2.0.0", + "packageName": "@types/loud-rejection", + "hash": "sha512-oTHISsIybJGoh3b3Ay/10csbAd2k0su7G7DGrE1QWciC+IdydPm0WMw1+Gr9YMYjPiJ5poB3g5Ev73IlLoavLw==" + } + }, + "npm:@types/minimatch@3.0.5": { + "type": "npm", + "name": "npm:@types/minimatch@3.0.5", + "data": { + "version": "3.0.5", + "packageName": "@types/minimatch", + "hash": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "5.1.2", + "packageName": "@types/minimatch", + "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + } + }, + "npm:@types/minimist": { + "type": "npm", + "name": "npm:@types/minimist", + "data": { + "version": "1.2.5", + "packageName": "@types/minimist", + "hash": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==" + } + }, + "npm:@types/node-fetch": { + "type": "npm", + "name": "npm:@types/node-fetch", + "data": { + "version": "2.5.10", + "packageName": "@types/node-fetch", + "hash": "sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==" + } + }, + "npm:@types/node@12.20.55": { + "type": "npm", + "name": "npm:@types/node@12.20.55", + "data": { + "version": "12.20.55", + "packageName": "@types/node", + "hash": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" + } + }, + "npm:@types/node@14.18.63": { + "type": "npm", + "name": "npm:@types/node@14.18.63", + "data": { + "version": "14.18.63", + "packageName": "@types/node", + "hash": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.11.9", + "packageName": "@types/node", + "hash": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" + } + }, + "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/prettier@1.19.1": { + "type": "npm", + "name": "npm:@types/prettier@1.19.1", + "data": { + "version": "1.19.1", + "packageName": "@types/prettier", + "hash": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==" + } + }, + "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/rimraf": { + "type": "npm", + "name": "npm:@types/rimraf", + "data": { + "version": "3.0.0", + "packageName": "@types/rimraf", + "hash": "sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==" + } + }, + "npm:@types/semver@6.2.7": { + "type": "npm", + "name": "npm:@types/semver@6.2.7", + "data": { + "version": "6.2.7", + "packageName": "@types/semver", + "hash": "sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.3.12", + "packageName": "@types/semver", + "hash": "sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==" + } + }, + "npm:@types/shimmer": { + "type": "npm", + "name": "npm:@types/shimmer", + "data": { + "version": "1.2.0", + "packageName": "@types/shimmer", + "hash": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==" + } + }, + "npm:@types/sinon-chai": { + "type": "npm", + "name": "npm:@types/sinon-chai", + "data": { + "version": "3.2.5", + "packageName": "@types/sinon-chai", + "hash": "sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==" + } + }, + "npm:@types/sinon": { + "type": "npm", + "name": "npm:@types/sinon", + "data": { + "version": "9.0.10", + "packageName": "@types/sinon", + "hash": "sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.5", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "1.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" + } + }, + "npm:@types/stack-utils@2.0.3": { + "type": "npm", + "name": "npm:@types/stack-utils@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "@types/stack-utils", + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + } + }, + "npm:@types/tmp": { + "type": "npm", + "name": "npm:@types/tmp", + "data": { + "version": "0.2.0", + "packageName": "@types/tmp", + "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" + } + }, + "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/triple-beam": { + "type": "npm", + "name": "npm:@types/triple-beam", + "data": { + "version": "1.3.5", + "packageName": "@types/triple-beam", + "hash": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" + } + }, + "npm:@types/vscode": { + "type": "npm", + "name": "npm:@types/vscode", + "data": { + "version": "1.47.0", + "packageName": "@types/vscode", + "hash": "sha512-nJA37ykkz9FYA0ZOQUSc3OZnhuzEW2vUhUEo4MiduUo82jGwwcLfyvmgd/Q7b0WrZAAceojGhZybg319L24bTA==" + } + }, + "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/yargs@15.0.19": { + "type": "npm", + "name": "npm:@types/yargs@15.0.19", + "data": { + "version": "15.0.19", + "packageName": "@types/yargs", + "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.33", + "packageName": "@types/yargs", + "hash": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==" + } + }, + "npm:@typescript-eslint/experimental-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/experimental-utils", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/experimental-utils", + "hash": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==" + } + }, + "npm:@typescript-eslint/scope-manager@4.14.0": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@4.14.0", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A==" + } + }, + "npm:@typescript-eslint/types@4.33.0": { + "type": "npm", + "name": "npm:@typescript-eslint/types@4.33.0", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==" + } + }, + "npm:@typescript-eslint/typescript-estree@4.33.0": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@4.33.0", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "4.14.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA==" + } + }, + "npm:@typescript-eslint/visitor-keys@4.33.0": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@4.33.0", + "data": { + "version": "4.33.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==" + } + }, + "npm:@vscode-logging/logger": { + "type": "npm", + "name": "npm:@vscode-logging/logger", + "data": { + "version": "1.2.2", + "packageName": "@vscode-logging/logger", + "hash": "sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA==" + } + }, + "npm:@vscode-logging/types": { + "type": "npm", + "name": "npm:@vscode-logging/types", + "data": { + "version": "0.1.4", + "packageName": "@vscode-logging/types", + "hash": "sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==" + } + }, + "npm:@vue/compiler-core": { + "type": "npm", + "name": "npm:@vue/compiler-core", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-core", + "hash": "sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==" + } + }, + "npm:@vue/compiler-dom": { + "type": "npm", + "name": "npm:@vue/compiler-dom", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-dom", + "hash": "sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==" + } + }, + "npm:@vue/compiler-sfc": { + "type": "npm", + "name": "npm:@vue/compiler-sfc", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-sfc", + "hash": "sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==" + } + }, + "npm:@vue/compiler-ssr": { + "type": "npm", + "name": "npm:@vue/compiler-ssr", + "data": { + "version": "3.5.11", + "packageName": "@vue/compiler-ssr", + "hash": "sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==" + } + }, + "npm:@vue/shared": { + "type": "npm", + "name": "npm:@vue/shared", + "data": { + "version": "3.5.11", + "packageName": "@vue/shared", + "hash": "sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==" + } + }, + "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.12.1", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" + } + }, + "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.12.1", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==" + } + }, + "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.12.1", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.12.1", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==" + } + }, + "npm:@xml-tools/ast-position": { + "type": "npm", + "name": "npm:@xml-tools/ast-position", + "data": { + "version": "2.0.2", + "packageName": "@xml-tools/ast-position", + "hash": "sha512-SuZrlXPJICF/mtcjPe8Yq5gTX6XaLyWACQyeVG6X+dMuHWiZ5ckLvlMXs5SZg9Xxw21d3Q/P1MFyM33HQPzkNg==" + } + }, + "npm:@xml-tools/ast": { + "type": "npm", + "name": "npm:@xml-tools/ast", + "data": { + "version": "5.0.0", + "packageName": "@xml-tools/ast", + "hash": "sha512-NLMBbvW1S6bG+pHvPfQeM3ci+le9LexuA4E+obqoRpTWqlJSQGiPKxq8p+HauQmdlF4UC9GUIGsa+9FNFefKyg==" + } + }, + "npm:@xml-tools/common": { + "type": "npm", + "name": "npm:@xml-tools/common", + "data": { + "version": "0.1.2", + "packageName": "@xml-tools/common", + "hash": "sha512-5U0CbB3u5WDRKX+oPjHEm6ZkJk8z5LZMpEI6uzBzcnP+3dIxahCF90lhwljQ/rPVSLMLxLfv72xru6RbePeLWA==" + } + }, + "npm:@xml-tools/content-assist": { + "type": "npm", + "name": "npm:@xml-tools/content-assist", + "data": { + "version": "3.1.7", + "packageName": "@xml-tools/content-assist", + "hash": "sha512-qkOSsQt3arJANrJnypXmLzXaCeFX0qNCZDvrNue0LDhWP+MbGMJO50Vh5FLYCQUCzDFHIzi8T53abCkbO1e3ug==" + } + }, + "npm:@xml-tools/parser@1.0.11": { + "type": "npm", + "name": "npm:@xml-tools/parser@1.0.11", + "data": { + "version": "1.0.11", + "packageName": "@xml-tools/parser", + "hash": "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==" + } + }, + "npm:@xml-tools/parser": { + "type": "npm", + "name": "npm:@xml-tools/parser", + "data": { + "version": "1.0.7", + "packageName": "@xml-tools/parser", + "hash": "sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ==" + } + }, + "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@0.0.6": { + "type": "npm", + "name": "npm:@zkochan/js-yaml@0.0.6", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.7", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "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:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-attributes": { + "type": "npm", + "name": "npm:acorn-import-attributes", + "data": { + "version": "1.9.5", + "packageName": "acorn-import-attributes", + "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" + } + }, + "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.4", + "packageName": "acorn-walk", + "hash": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "7.4.1", + "packageName": "acorn", + "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + }, + "npm:acorn@8.12.1": { + "type": "npm", + "name": "npm:acorn@8.12.1", + "data": { + "version": "8.12.1", + "packageName": "acorn", + "hash": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==" + } + }, + "npm:add-stream": { + "type": "npm", + "name": "npm:add-stream", + "data": { + "version": "1.0.0", + "packageName": "add-stream", + "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.5.0", + "packageName": "agentkeepalive", + "hash": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.3", + "packageName": "ajv", + "hash": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==" + } + }, + "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@8.17.1": { + "type": "npm", + "name": "npm:ajv@8.17.1", + "data": { + "version": "8.17.1", + "packageName": "ajv", + "hash": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==" + } + }, + "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-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex@6.1.0": { + "type": "npm", + "name": "npm:ansi-regex@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "ansi-regex", + "hash": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + } + }, + "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: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:any-promise": { + "type": "npm", + "name": "npm:any-promise", + "data": { + "version": "1.3.0", + "packageName": "any-promise", + "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:append-transform": { + "type": "npm", + "name": "npm:append-transform", + "data": { + "version": "2.0.0", + "packageName": "append-transform", + "hash": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==" + } + }, + "npm:applicationinsights": { + "type": "npm", + "name": "npm:applicationinsights", + "data": { + "version": "2.9.2", + "packageName": "applicationinsights", + "hash": "sha512-wlDiD7v0BQNM8oNzsf9C836R5ze25u+CuCEZsbA5xMIXYYBxkqkWE/mo9GFJM7rsKaiGqpxEwWmePHKD2Lwy2w==" + } + }, + "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:archy": { + "type": "npm", + "name": "npm:archy", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==" + } + }, + "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:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.1", + "packageName": "array-buffer-byte-length", + "hash": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==" + } + }, + "npm:array-differ": { + "type": "npm", + "name": "npm:array-differ", + "data": { + "version": "3.0.0", + "packageName": "array-differ", + "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + } + }, + "npm:array-find-index": { + "type": "npm", + "name": "npm:array-find-index", + "data": { + "version": "1.0.2", + "packageName": "array-find-index", + "hash": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==" + } + }, + "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.8", + "packageName": "array-includes", + "hash": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==" + } + }, + "npm:array-timsort": { + "type": "npm", + "name": "npm:array-timsort", + "data": { + "version": "1.0.3", + "packageName": "array-timsort", + "hash": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" + } + }, + "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:array.prototype.findlastindex": { + "type": "npm", + "name": "npm:array.prototype.findlastindex", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.findlastindex", + "hash": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flat", + "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flatmap", + "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.3", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==" + } + }, + "npm:arrify@1.0.1": { + "type": "npm", + "name": "npm:arrify@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "arrify", + "hash": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" + } + }, + "npm:arrify": { + "type": "npm", + "name": "npm:arrify", + "data": { + "version": "2.0.1", + "packageName": "arrify", + "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + } + }, + "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-never": { + "type": "npm", + "name": "npm:assert-never", + "data": { + "version": "1.2.1", + "packageName": "assert-never", + "hash": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + } + }, + "npm:assertion-error": { + "type": "npm", + "name": "npm:assertion-error", + "data": { + "version": "1.1.0", + "packageName": "assertion-error", + "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async-hook-jl": { + "type": "npm", + "name": "npm:async-hook-jl", + "data": { + "version": "1.7.6", + "packageName": "async-hook-jl", + "hash": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==" + } + }, + "npm:async-listener": { + "type": "npm", + "name": "npm:async-listener", + "data": { + "version": "0.6.10", + "packageName": "async-listener", + "hash": "sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.5", + "packageName": "async", + "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + } + }, + "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:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.7", + "packageName": "available-typed-arrays", + "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" + } + }, + "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.13.2", + "packageName": "aws4", + "hash": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.6.1", + "packageName": "axios", + "hash": "sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==" + } + }, + "npm:axios@1.7.4": { + "type": "npm", + "name": "npm:axios@1.7.4", + "data": { + "version": "1.7.4", + "packageName": "axios", + "hash": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==" + } + }, + "npm:axios@1.7.7": { + "type": "npm", + "name": "npm:axios@1.7.7", + "data": { + "version": "1.7.7", + "packageName": "axios", + "hash": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==" + } + }, + "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-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.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.1.0", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==" + } + }, + "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:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" + } + }, + "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:better-path-resolve": { + "type": "npm", + "name": "npm:better-path-resolve", + "data": { + "version": "1.0.0", + "packageName": "better-path-resolve", + "hash": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==" + } + }, + "npm:big-integer": { + "type": "npm", + "name": "npm:big-integer", + "data": { + "version": "1.6.52", + "packageName": "big-integer", + "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:binary": { + "type": "npm", + "name": "npm:binary", + "data": { + "version": "0.3.0", + "packageName": "binary", + "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" + } + }, + "npm:binaryextensions": { + "type": "npm", + "name": "npm:binaryextensions", + "data": { + "version": "4.19.0", + "packageName": "binaryextensions", + "hash": "sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.4.7", + "packageName": "bluebird", + "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "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:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:breakword": { + "type": "npm", + "name": "npm:breakword", + "data": { + "version": "1.0.6", + "packageName": "breakword", + "hash": "sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==" + } + }, + "npm:browser-resolve": { + "type": "npm", + "name": "npm:browser-resolve", + "data": { + "version": "1.11.3", + "packageName": "browser-resolve", + "hash": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.24.0", + "packageName": "browserslist", + "hash": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==" + } + }, + "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:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer-indexof-polyfill": { + "type": "npm", + "name": "npm:buffer-indexof-polyfill", + "data": { + "version": "1.0.2", + "packageName": "buffer-indexof-polyfill", + "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:buffers": { + "type": "npm", + "name": "npm:buffers", + "data": { + "version": "0.1.1", + "packageName": "buffers", + "hash": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==" + } + }, + "npm:builtins@1.0.3": { + "type": "npm", + "name": "npm:builtins@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.1.0", + "packageName": "builtins", + "hash": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==" + } + }, + "npm:byte-size": { + "type": "npm", + "name": "npm:byte-size", + "data": { + "version": "8.1.1", + "packageName": "byte-size", + "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" + } + }, + "npm:cacache@16.1.3": { + "type": "npm", + "name": "npm:cacache@16.1.3", + "data": { + "version": "16.1.3", + "packageName": "cacache", + "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "17.1.4", + "packageName": "cacache", + "hash": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.3.0", + "packageName": "cachedir", + "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" + } + }, + "npm:caching-transform": { + "type": "npm", + "name": "npm:caching-transform", + "data": { + "version": "4.0.0", + "packageName": "caching-transform", + "hash": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.7", + "packageName": "call-bind", + "hash": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==" + } + }, + "npm:call-me-maybe": { + "type": "npm", + "name": "npm:call-me-maybe", + "data": { + "version": "1.0.2", + "packageName": "call-me-maybe", + "hash": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase-keys": { + "type": "npm", + "name": "npm:camelcase-keys", + "data": { + "version": "6.2.2", + "packageName": "camelcase-keys", + "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" + } + }, + "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-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001667", + "packageName": "caniuse-lite", + "hash": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + } + }, + "npm:chai": { + "type": "npm", + "name": "npm:chai", + "data": { + "version": "4.2.0", + "packageName": "chai", + "hash": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==" + } + }, + "npm:chainsaw": { + "type": "npm", + "name": "npm:chainsaw", + "data": { + "version": "0.1.0", + "packageName": "chainsaw", + "hash": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk@3.0.0": { + "type": "npm", + "name": "npm:chalk@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chalk", + "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + } + }, + "npm:chalk@4.1.0": { + "type": "npm", + "name": "npm:chalk@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "chalk", + "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + } + }, + "npm:chalk@4.1.2": { + "type": "npm", + "name": "npm:chalk@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "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: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-error": { + "type": "npm", + "name": "npm:check-error", + "data": { + "version": "1.0.3", + "packageName": "check-error", + "hash": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==" + } + }, + "npm:chevrotain@10.4.2": { + "type": "npm", + "name": "npm:chevrotain@10.4.2", + "data": { + "version": "10.4.2", + "packageName": "chevrotain", + "hash": "sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg==" + } + }, + "npm:chevrotain": { + "type": "npm", + "name": "npm:chevrotain", + "data": { + "version": "7.0.1", + "packageName": "chevrotain", + "hash": "sha512-B/44jrdw5GAzy483LEeVSgXSX0qOYM8lUd3l5+yf6Vl6OQjEUCm2BUiYbHRCIK6xCEvCLAFe1kj8uyV6+zdaVw==" + } + }, + "npm:chevrotain@7.1.1": { + "type": "npm", + "name": "npm:chevrotain@7.1.1", + "data": { + "version": "7.1.1", + "packageName": "chevrotain", + "hash": "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==" + } + }, + "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.4", + "packageName": "chrome-trace-event", + "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.9.0", + "packageName": "ci-info", + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.4.1", + "packageName": "cjs-module-lexer", + "hash": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:cli-color": { + "type": "npm", + "name": "npm:cli-color", + "data": { + "version": "2.0.3", + "packageName": "cli-color", + "hash": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==" + } + }, + "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-spinners@2.9.2": { + "type": "npm", + "name": "npm:cli-spinners@2.9.2", + "data": { + "version": "2.9.2", + "packageName": "cli-spinners", + "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" + } + }, + "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-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:cliui@6.0.0": { + "type": "npm", + "name": "npm:cliui@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cliui", + "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + } + }, + "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: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:clone-buffer": { + "type": "npm", + "name": "npm:clone-buffer", + "data": { + "version": "1.0.0", + "packageName": "clone-buffer", + "hash": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:clone-stats": { + "type": "npm", + "name": "npm:clone-stats", + "data": { + "version": "1.0.0", + "packageName": "clone-stats", + "hash": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" + } + }, + "npm:clone@1.0.4": { + "type": "npm", + "name": "npm:clone@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "2.1.2", + "packageName": "clone", + "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + } + }, + "npm:cloneable-readable": { + "type": "npm", + "name": "npm:cloneable-readable", + "data": { + "version": "1.1.3", + "packageName": "cloneable-readable", + "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" + } + }, + "npm:cls-hooked": { + "type": "npm", + "name": "npm:cls-hooked", + "data": { + "version": "4.2.2", + "packageName": "cls-hooked", + "hash": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==" + } + }, + "npm:cmd-shim": { + "type": "npm", + "name": "npm:cmd-shim", + "data": { + "version": "6.0.1", + "packageName": "cmd-shim", + "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "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: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-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-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "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-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.9.1", + "packageName": "color-string", + "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" + } + }, + "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:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "3.2.1", + "packageName": "color", + "hash": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:colorspace": { + "type": "npm", + "name": "npm:colorspace", + "data": { + "version": "1.1.4", + "packageName": "colorspace", + "hash": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==" + } + }, + "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@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:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:comment-json": { + "type": "npm", + "name": "npm:comment-json", + "data": { + "version": "4.2.5", + "packageName": "comment-json", + "hash": "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==" + } + }, + "npm:commitizen": { + "type": "npm", + "name": "npm:commitizen", + "data": { + "version": "4.3.1", + "packageName": "commitizen", + "hash": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==" + } + }, + "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: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": "2.0.0", + "packageName": "concat-stream", + "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" + } + }, + "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:continuation-local-storage": { + "type": "npm", + "name": "npm:continuation-local-storage", + "data": { + "version": "3.2.1", + "packageName": "continuation-local-storage", + "hash": "sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==" + } + }, + "npm:conventional-changelog-angular@5.0.13": { + "type": "npm", + "name": "npm:conventional-changelog-angular@5.0.13", + "data": { + "version": "5.0.13", + "packageName": "conventional-changelog-angular", + "hash": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==" + } + }, + "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-atom": { + "type": "npm", + "name": "npm:conventional-changelog-atom", + "data": { + "version": "2.0.8", + "packageName": "conventional-changelog-atom", + "hash": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==" + } + }, + "npm:conventional-changelog-cli": { + "type": "npm", + "name": "npm:conventional-changelog-cli", + "data": { + "version": "2.1.1", + "packageName": "conventional-changelog-cli", + "hash": "sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==" + } + }, + "npm:conventional-changelog-codemirror": { + "type": "npm", + "name": "npm:conventional-changelog-codemirror", + "data": { + "version": "2.0.8", + "packageName": "conventional-changelog-codemirror", + "hash": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==" + } + }, + "npm:conventional-changelog-conventionalcommits": { + "type": "npm", + "name": "npm:conventional-changelog-conventionalcommits", + "data": { + "version": "4.6.3", + "packageName": "conventional-changelog-conventionalcommits", + "hash": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==" + } + }, + "npm:conventional-changelog-core@4.2.4": { + "type": "npm", + "name": "npm:conventional-changelog-core@4.2.4", + "data": { + "version": "4.2.4", + "packageName": "conventional-changelog-core", + "hash": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==" + } + }, + "npm:conventional-changelog-core": { + "type": "npm", + "name": "npm:conventional-changelog-core", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-core", + "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" + } + }, + "npm:conventional-changelog-ember": { + "type": "npm", + "name": "npm:conventional-changelog-ember", + "data": { + "version": "2.0.9", + "packageName": "conventional-changelog-ember", + "hash": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==" + } + }, + "npm:conventional-changelog-eslint": { + "type": "npm", + "name": "npm:conventional-changelog-eslint", + "data": { + "version": "3.0.9", + "packageName": "conventional-changelog-eslint", + "hash": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==" + } + }, + "npm:conventional-changelog-express": { + "type": "npm", + "name": "npm:conventional-changelog-express", + "data": { + "version": "2.0.6", + "packageName": "conventional-changelog-express", + "hash": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==" + } + }, + "npm:conventional-changelog-jquery": { + "type": "npm", + "name": "npm:conventional-changelog-jquery", + "data": { + "version": "3.0.11", + "packageName": "conventional-changelog-jquery", + "hash": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==" + } + }, + "npm:conventional-changelog-jshint": { + "type": "npm", + "name": "npm:conventional-changelog-jshint", + "data": { + "version": "2.0.9", + "packageName": "conventional-changelog-jshint", + "hash": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==" + } + }, + "npm:conventional-changelog-preset-loader": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader", + "data": { + "version": "2.3.4", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==" + } + }, + "npm:conventional-changelog-preset-loader@3.0.0": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" + } + }, + "npm:conventional-changelog-writer@5.0.1": { + "type": "npm", + "name": "npm:conventional-changelog-writer@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "6.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" + } + }, + "npm:conventional-changelog": { + "type": "npm", + "name": "npm:conventional-changelog", + "data": { + "version": "3.1.25", + "packageName": "conventional-changelog", + "hash": "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==" + } + }, + "npm:conventional-commit-types": { + "type": "npm", + "name": "npm:conventional-commit-types", + "data": { + "version": "3.0.0", + "packageName": "conventional-commit-types", + "hash": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==" + } + }, + "npm:conventional-commits-filter@2.0.7": { + "type": "npm", + "name": "npm:conventional-commits-filter@2.0.7", + "data": { + "version": "2.0.7", + "packageName": "conventional-commits-filter", + "hash": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "3.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" + } + }, + "npm:conventional-commits-parser@3.2.4": { + "type": "npm", + "name": "npm:conventional-commits-parser@3.2.4", + "data": { + "version": "3.2.4", + "packageName": "conventional-commits-parser", + "hash": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" + } + }, + "npm:conventional-recommended-bump": { + "type": "npm", + "name": "npm:conventional-recommended-bump", + "data": { + "version": "7.0.1", + "packageName": "conventional-recommended-bump", + "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" + } + }, + "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: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:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.38.1", + "packageName": "core-js", + "hash": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==" + } + }, + "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:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:cosmiconfig-typescript-loader": { + "type": "npm", + "name": "npm:cosmiconfig-typescript-loader", + "data": { + "version": "5.0.0", + "packageName": "cosmiconfig-typescript-loader", + "hash": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==" + } + }, + "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": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:cosmiconfig@9.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" + } + }, + "npm:coveralls": { + "type": "npm", + "name": "npm:coveralls", + "data": { + "version": "3.1.0", + "packageName": "coveralls", + "hash": "sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:cross-env": { + "type": "npm", + "name": "npm:cross-env", + "data": { + "version": "7.0.3", + "packageName": "cross-env", + "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" + } + }, + "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:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "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:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:csv-generate": { + "type": "npm", + "name": "npm:csv-generate", + "data": { + "version": "3.4.3", + "packageName": "csv-generate", + "hash": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==" + } + }, + "npm:csv-parse": { + "type": "npm", + "name": "npm:csv-parse", + "data": { + "version": "4.16.3", + "packageName": "csv-parse", + "hash": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==" + } + }, + "npm:csv-stringify": { + "type": "npm", + "name": "npm:csv-stringify", + "data": { + "version": "5.6.5", + "packageName": "csv-stringify", + "hash": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==" + } + }, + "npm:csv": { + "type": "npm", + "name": "npm:csv", + "data": { + "version": "5.5.3", + "packageName": "csv", + "hash": "sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==" + } + }, + "npm:currently-unhandled": { + "type": "npm", + "name": "npm:currently-unhandled", + "data": { + "version": "0.4.1", + "packageName": "currently-unhandled", + "hash": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==" + } + }, + "npm:cz-conventional-changelog": { + "type": "npm", + "name": "npm:cz-conventional-changelog", + "data": { + "version": "3.3.0", + "packageName": "cz-conventional-changelog", + "hash": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==" + } + }, + "npm:d": { + "type": "npm", + "name": "npm:d", + "data": { + "version": "1.0.1", + "packageName": "d", + "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" + } + }, + "npm:dargs": { + "type": "npm", + "name": "npm:dargs", + "data": { + "version": "7.0.0", + "packageName": "dargs", + "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" + } + }, + "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:data-view-buffer": { + "type": "npm", + "name": "npm:data-view-buffer", + "data": { + "version": "1.0.1", + "packageName": "data-view-buffer", + "hash": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==" + } + }, + "npm:data-view-byte-length": { + "type": "npm", + "name": "npm:data-view-byte-length", + "data": { + "version": "1.0.1", + "packageName": "data-view-byte-length", + "hash": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==" + } + }, + "npm:data-view-byte-offset": { + "type": "npm", + "name": "npm:data-view-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "data-view-byte-offset", + "hash": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==" + } + }, + "npm:date-format": { + "type": "npm", + "name": "npm:date-format", + "data": { + "version": "2.1.0", + "packageName": "date-format", + "hash": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==" + } + }, + "npm:dateformat": { + "type": "npm", + "name": "npm:dateformat", + "data": { + "version": "3.0.3", + "packageName": "dateformat", + "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + } + }, + "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@4.3.4": { + "type": "npm", + "name": "npm:debug@4.3.4", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.7", + "packageName": "debug", + "hash": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==" + } + }, + "npm:decamelize-keys": { + "type": "npm", + "name": "npm:decamelize-keys", + "data": { + "version": "1.1.1", + "packageName": "decamelize-keys", + "hash": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + } + }, + "npm:dedent@1.5.3": { + "type": "npm", + "name": "npm:dedent@1.5.3", + "data": { + "version": "1.5.3", + "packageName": "dedent", + "hash": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==" + } + }, + "npm:deep-eql": { + "type": "npm", + "name": "npm:deep-eql", + "data": { + "version": "3.0.1", + "packageName": "deep-eql", + "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" + } + }, + "npm:deep-equal-in-any-order": { + "type": "npm", + "name": "npm:deep-equal-in-any-order", + "data": { + "version": "1.0.28", + "packageName": "deep-equal-in-any-order", + "hash": "sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ==" + } + }, + "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-freeze-strict": { + "type": "npm", + "name": "npm:deep-freeze-strict", + "data": { + "version": "1.1.1", + "packageName": "deep-freeze-strict", + "hash": "sha512-QemROZMM2IvhAcCFvahdX2Vbm4S/txeq5rFYU9fh4mQP79WTMW5c/HkQ2ICl1zuzcDZdPZ6zarDxQeQMsVYoNA==" + } + }, + "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-require-extensions": { + "type": "npm", + "name": "npm:default-require-extensions", + "data": { + "version": "3.0.1", + "packageName": "default-require-extensions", + "hash": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.4", + "packageName": "define-data-property", + "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" + } + }, + "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:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:detect-file": { + "type": "npm", + "name": "npm:detect-file", + "data": { + "version": "1.0.0", + "packageName": "detect-file", + "hash": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==" + } + }, + "npm:detect-indent@5.0.0": { + "type": "npm", + "name": "npm:detect-indent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "detect-indent", + "hash": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==" + } + }, + "npm:detect-indent": { + "type": "npm", + "name": "npm:detect-indent", + "data": { + "version": "6.1.0", + "packageName": "detect-indent", + "hash": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:diagnostic-channel-publishers": { + "type": "npm", + "name": "npm:diagnostic-channel-publishers", + "data": { + "version": "1.0.8", + "packageName": "diagnostic-channel-publishers", + "hash": "sha512-HmSm9hXxSPxA9BaLGY98QU1zsdjeCk113KjAYGPCen1ZP6mhVaTPzHd6UYv5r21DnWANi+f+NyPOHruGT9jpqQ==" + } + }, + "npm:diagnostic-channel": { + "type": "npm", + "name": "npm:diagnostic-channel", + "data": { + "version": "1.1.1", + "packageName": "diagnostic-channel", + "hash": "sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==" + } + }, + "npm:diff-sequences@25.2.6": { + "type": "npm", + "name": "npm:diff-sequences@25.2.6", + "data": { + "version": "25.2.6", + "packageName": "diff-sequences", + "hash": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "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:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv-expand@10.0.0": { + "type": "npm", + "name": "npm:dotenv-expand@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "11.0.6", + "packageName": "dotenv-expand", + "hash": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==" + } + }, + "npm:dotenv@16.3.2": { + "type": "npm", + "name": "npm:dotenv@16.3.2", + "data": { + "version": "16.3.2", + "packageName": "dotenv", + "hash": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "16.4.5", + "packageName": "dotenv", + "hash": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "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: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.5.33", + "packageName": "electron-to-chromium", + "hash": "sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==" + } + }, + "npm:emitter-listener": { + "type": "npm", + "name": "npm:emitter-listener", + "data": { + "version": "1.1.2", + "packageName": "emitter-listener", + "hash": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "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:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:enabled": { + "type": "npm", + "name": "npm:enabled", + "data": { + "version": "2.0.0", + "packageName": "enabled", + "hash": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + } + }, + "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.17.1", + "packageName": "enhanced-resolve", + "hash": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==" + } + }, + "npm:enquirer@2.3.6": { + "type": "npm", + "name": "npm:enquirer@2.3.6", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.4.1", + "packageName": "enquirer", + "hash": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.3.0", + "packageName": "entities", + "hash": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + } + }, + "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-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:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.1.4", + "packageName": "error-stack-parser", + "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.23.3", + "packageName": "es-abstract", + "hash": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==" + } + }, + "npm:es-define-property": { + "type": "npm", + "name": "npm:es-define-property", + "data": { + "version": "1.0.0", + "packageName": "es-define-property", + "hash": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==" + } + }, + "npm:es-errors": { + "type": "npm", + "name": "npm:es-errors", + "data": { + "version": "1.3.0", + "packageName": "es-errors", + "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.5.4", + "packageName": "es-module-lexer", + "hash": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" + } + }, + "npm:es-object-atoms": { + "type": "npm", + "name": "npm:es-object-atoms", + "data": { + "version": "1.0.0", + "packageName": "es-object-atoms", + "hash": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.3", + "packageName": "es-set-tostringtag", + "hash": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.2", + "packageName": "es-shim-unscopables", + "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:es5-ext": { + "type": "npm", + "name": "npm:es5-ext", + "data": { + "version": "0.10.62", + "packageName": "es5-ext", + "hash": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==" + } + }, + "npm:es6-error": { + "type": "npm", + "name": "npm:es6-error", + "data": { + "version": "4.1.1", + "packageName": "es6-error", + "hash": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==" + } + }, + "npm:es6-iterator": { + "type": "npm", + "name": "npm:es6-iterator", + "data": { + "version": "2.0.3", + "packageName": "es6-iterator", + "hash": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==" + } + }, + "npm:es6-symbol": { + "type": "npm", + "name": "npm:es6-symbol", + "data": { + "version": "3.1.3", + "packageName": "es6-symbol", + "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" + } + }, + "npm:es6-weak-map": { + "type": "npm", + "name": "npm:es6-weak-map", + "data": { + "version": "2.0.3", + "packageName": "es6-weak-map", + "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.17.12", + "packageName": "esbuild", + "hash": "sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.2.0", + "packageName": "escalade", + "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "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:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "7.2.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.9", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" + } + }, + "npm:eslint-import-resolver-typescript": { + "type": "npm", + "name": "npm:eslint-import-resolver-typescript", + "data": { + "version": "3.6.1", + "packageName": "eslint-import-resolver-typescript", + "hash": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.12.0", + "packageName": "eslint-module-utils", + "hash": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==" + } + }, + "npm:eslint-plugin-eslint-comments": { + "type": "npm", + "name": "npm:eslint-plugin-eslint-comments", + "data": { + "version": "3.2.0", + "packageName": "eslint-plugin-eslint-comments", + "hash": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.31.0", + "packageName": "eslint-plugin-import", + "hash": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:eslint-utils@3.0.0": { + "type": "npm", + "name": "npm:eslint-utils@3.0.0", + "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": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "2.1.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "7.18.0", + "packageName": "eslint", + "hash": "sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==" + } + }, + "npm:esm": { + "type": "npm", + "name": "npm:esm", + "data": { + "version": "3.2.25", + "packageName": "esm", + "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "7.3.1", + "packageName": "espree", + "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" + } + }, + "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": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:estraverse@5.3.0": { + "type": "npm", + "name": "npm:estraverse@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "2.0.2", + "packageName": "estree-walker", + "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:event-emitter": { + "type": "npm", + "name": "npm:event-emitter", + "data": { + "version": "0.3.5", + "packageName": "event-emitter", + "hash": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==" + } + }, + "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: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.0.0", + "packageName": "execa", + "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" + } + }, + "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:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expand-tilde": { + "type": "npm", + "name": "npm:expand-tilde", + "data": { + "version": "2.0.2", + "packageName": "expand-tilde", + "hash": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==" + } + }, + "npm:expect@25.5.0": { + "type": "npm", + "name": "npm:expect@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "expect", + "hash": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==" + } + }, + "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:ext": { + "type": "npm", + "name": "npm:ext", + "data": { + "version": "1.7.0", + "packageName": "ext", + "hash": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:extendable-error": { + "type": "npm", + "name": "npm:extendable-error", + "data": { + "version": "0.1.7", + "packageName": "extendable-error", + "hash": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "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-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "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-safe-stringify": { + "type": "npm", + "name": "npm:fast-safe-stringify", + "data": { + "version": "2.0.7", + "packageName": "fast-safe-stringify", + "hash": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" + } + }, + "npm:fast-uri": { + "type": "npm", + "name": "npm:fast-uri", + "data": { + "version": "3.0.1", + "packageName": "fast-uri", + "hash": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + } + }, + "npm:fast-xml-parser": { + "type": "npm", + "name": "npm:fast-xml-parser", + "data": { + "version": "4.2.7", + "packageName": "fast-xml-parser", + "hash": "sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.16.0", + "packageName": "fastq", + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fecha": { + "type": "npm", + "name": "npm:fecha", + "data": { + "version": "4.2.3", + "packageName": "fecha", + "hash": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "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: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:fill-keys": { + "type": "npm", + "name": "npm:fill-keys", + "data": { + "version": "1.0.2", + "packageName": "fill-keys", + "hash": "sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "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-node-modules": { + "type": "npm", + "name": "npm:find-node-modules", + "data": { + "version": "2.1.3", + "packageName": "find-node-modules", + "hash": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==" + } + }, + "npm:find-root": { + "type": "npm", + "name": "npm:find-root", + "data": { + "version": "1.1.0", + "packageName": "find-root", + "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + } + }, + "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": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "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-yarn-workspace-root2": { + "type": "npm", + "name": "npm:find-yarn-workspace-root2", + "data": { + "version": "1.2.16", + "packageName": "find-yarn-workspace-root2", + "hash": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==" + } + }, + "npm:findit2": { + "type": "npm", + "name": "npm:findit2", + "data": { + "version": "2.2.3", + "packageName": "findit2", + "hash": "sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog==" + } + }, + "npm:findup-sync": { + "type": "npm", + "name": "npm:findup-sync", + "data": { + "version": "4.0.0", + "packageName": "findup-sync", + "hash": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==" + } + }, + "npm:first-chunk-stream": { + "type": "npm", + "name": "npm:first-chunk-stream", + "data": { + "version": "2.0.0", + "packageName": "first-chunk-stream", + "hash": "sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.2.0", + "packageName": "flat-cache", + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.9", + "packageName": "flatted", + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + } + }, + "npm:fn.name": { + "type": "npm", + "name": "npm:fn.name", + "data": { + "version": "1.1.0", + "packageName": "fn.name", + "hash": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.5", + "packageName": "follow-redirects", + "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + } + }, + "npm:follow-redirects@1.15.9": { + "type": "npm", + "name": "npm:follow-redirects@1.15.9", + "data": { + "version": "1.15.9", + "packageName": "follow-redirects", + "hash": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "2.0.0", + "packageName": "foreground-child", + "hash": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==" + } + }, + "npm:foreground-child@3.3.0": { + "type": "npm", + "name": "npm:foreground-child@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "foreground-child", + "hash": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + } + }, + "npm:form-data@2.3.3": { + "type": "npm", + "name": "npm:form-data@2.3.3", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "3.0.1", + "packageName": "form-data", + "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" + } + }, + "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:fromentries": { + "type": "npm", + "name": "npm:fromentries", + "data": { + "version": "1.3.2", + "packageName": "fromentries", + "hash": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==" + } + }, + "npm:front-matter": { + "type": "npm", + "name": "npm:front-matter", + "data": { + "version": "4.0.2", + "packageName": "front-matter", + "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" + } + }, + "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-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra@11.2.0": { + "type": "npm", + "name": "npm:fs-extra@11.2.0", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:fs-extra@7.0.1": { + "type": "npm", + "name": "npm:fs-extra@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "fs-extra", + "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + } + }, + "npm:fs-extra@8.1.0": { + "type": "npm", + "name": "npm:fs-extra@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "fs-extra", + "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + } + }, + "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-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" + } + }, + "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:fstream": { + "type": "npm", + "name": "npm:fstream", + "data": { + "version": "1.0.12", + "packageName": "fstream", + "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" + } + }, + "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: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: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-func-name": { + "type": "npm", + "name": "npm:get-func-name", + "data": { + "version": "2.0.2", + "packageName": "get-func-name", + "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.4", + "packageName": "get-intrinsic", + "hash": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==" + } + }, + "npm:get-own-enumerable-property-symbols": { + "type": "npm", + "name": "npm:get-own-enumerable-property-symbols", + "data": { + "version": "3.0.2", + "packageName": "get-own-enumerable-property-symbols", + "hash": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + } + }, + "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-pkg-repo": { + "type": "npm", + "name": "npm:get-pkg-repo", + "data": { + "version": "4.2.1", + "packageName": "get-pkg-repo", + "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "5.1.1", + "packageName": "get-port", + "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "8.0.0", + "packageName": "get-stdin", + "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" + } + }, + "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": "6.0.0", + "packageName": "get-stream", + "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" + } + }, + "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-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.2", + "packageName": "get-symbol-description", + "hash": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==" + } + }, + "npm:get-tsconfig": { + "type": "npm", + "name": "npm:get-tsconfig", + "data": { + "version": "4.8.1", + "packageName": "get-tsconfig", + "hash": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" + } + }, + "npm:git-raw-commits": { + "type": "npm", + "name": "npm:git-raw-commits", + "data": { + "version": "2.0.11", + "packageName": "git-raw-commits", + "hash": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==" + } + }, + "npm:git-raw-commits@3.0.0": { + "type": "npm", + "name": "npm:git-raw-commits@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "git-raw-commits", + "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" + } + }, + "npm:git-remote-origin-url": { + "type": "npm", + "name": "npm:git-remote-origin-url", + "data": { + "version": "2.0.0", + "packageName": "git-remote-origin-url", + "hash": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==" + } + }, + "npm:git-semver-tags@4.1.1": { + "type": "npm", + "name": "npm:git-semver-tags@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "git-semver-tags", + "hash": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==" + } + }, + "npm:git-semver-tags": { + "type": "npm", + "name": "npm:git-semver-tags", + "data": { + "version": "5.0.1", + "packageName": "git-semver-tags", + "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" + } + }, + "npm:git-up": { + "type": "npm", + "name": "npm:git-up", + "data": { + "version": "7.0.0", + "packageName": "git-up", + "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" + } + }, + "npm:git-url-parse": { + "type": "npm", + "name": "npm:git-url-parse", + "data": { + "version": "13.1.0", + "packageName": "git-url-parse", + "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" + } + }, + "npm:gitconfiglocal": { + "type": "npm", + "name": "npm:gitconfiglocal", + "data": { + "version": "1.0.0", + "packageName": "gitconfiglocal", + "hash": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-promise": { + "type": "npm", + "name": "npm:glob-promise", + "data": { + "version": "3.4.0", + "packageName": "glob-promise", + "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" + } + }, + "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:glob@10.4.5": { + "type": "npm", + "name": "npm:glob@10.4.5", + "data": { + "version": "10.4.5", + "packageName": "glob", + "hash": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==" + } + }, + "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": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.1.6", + "packageName": "glob", + "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + } + }, + "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@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:global-directory": { + "type": "npm", + "name": "npm:global-directory", + "data": { + "version": "4.0.1", + "packageName": "global-directory", + "hash": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "0.1.1", + "packageName": "global-dirs", + "hash": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==" + } + }, + "npm:global-modules": { + "type": "npm", + "name": "npm:global-modules", + "data": { + "version": "1.0.0", + "packageName": "global-modules", + "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" + } + }, + "npm:global-prefix": { + "type": "npm", + "name": "npm:global-prefix", + "data": { + "version": "1.0.2", + "packageName": "global-prefix", + "hash": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==" + } + }, + "npm:globals@11.12.0": { + "type": "npm", + "name": "npm:globals@11.12.0", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "12.4.0", + "packageName": "globals", + "hash": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.4", + "packageName": "globalthis", + "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "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:grapheme-splitter": { + "type": "npm", + "name": "npm:grapheme-splitter", + "data": { + "version": "1.0.4", + "packageName": "grapheme-splitter", + "hash": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.8", + "packageName": "handlebars", + "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" + } + }, + "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:hard-rejection": { + "type": "npm", + "name": "npm:hard-rejection", + "data": { + "version": "2.1.0", + "packageName": "hard-rejection", + "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + } + }, + "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-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag@4.0.0": { + "type": "npm", + "name": "npm:has-flag@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-own-prop": { + "type": "npm", + "name": "npm:has-own-prop", + "data": { + "version": "2.0.0", + "packageName": "has-own-prop", + "hash": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.2", + "packageName": "has-property-descriptors", + "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.3", + "packageName": "has-proto", + "hash": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + } + }, + "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.2", + "packageName": "has-tostringtag", + "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + } + }, + "npm:hasha": { + "type": "npm", + "name": "npm:hasha", + "data": { + "version": "5.2.2", + "packageName": "hasha", + "hash": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==" + } + }, + "npm:hasown@2.0.0": { + "type": "npm", + "name": "npm:hasown@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.2", + "packageName": "hasown", + "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" + } + }, + "npm:homedir-polyfill": { + "type": "npm", + "name": "npm:homedir-polyfill", + "data": { + "version": "1.0.3", + "packageName": "homedir-polyfill", + "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" + } + }, + "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:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:hosted-git-info@4.1.0": { + "type": "npm", + "name": "npm:hosted-git-info@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "hosted-git-info", + "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" + } + }, + "npm:hosted-git-info@6.1.1": { + "type": "npm", + "name": "npm:hosted-git-info@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "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-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-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "4.0.1", + "packageName": "http-proxy-agent", + "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" + } + }, + "npm:http-proxy-agent@5.0.0": { + "type": "npm", + "name": "npm:http-proxy-agent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.2.0", + "packageName": "http-signature", + "hash": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==" + } + }, + "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:human-id": { + "type": "npm", + "name": "npm:human-id", + "data": { + "version": "1.0.2", + "packageName": "human-id", + "hash": "sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:human-signals@2.1.0": { + "type": "npm", + "name": "npm:human-signals@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "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.1", + "packageName": "husky", + "hash": "sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==" + } + }, + "npm:i18next": { + "type": "npm", + "name": "npm:i18next", + "data": { + "version": "19.0.2", + "packageName": "i18next", + "hash": "sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "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:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "5.0.1", + "packageName": "ignore-walk", + "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" + } + }, + "npm:ignore-walk@6.0.5": { + "type": "npm", + "name": "npm:ignore-walk@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "ignore-walk", + "hash": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==" + } + }, + "npm:ignore@4.0.6": { + "type": "npm", + "name": "npm:ignore@4.0.6", + "data": { + "version": "4.0.6", + "packageName": "ignore", + "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.0", + "packageName": "ignore", + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:import-in-the-middle": { + "type": "npm", + "name": "npm:import-in-the-middle", + "data": { + "version": "1.11.2", + "packageName": "import-in-the-middle", + "hash": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==" + } + }, + "npm:import-local@3.1.0": { + "type": "npm", + "name": "npm:import-local@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.2.0", + "packageName": "import-local", + "hash": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" + } + }, + "npm:import-meta-resolve": { + "type": "npm", + "name": "npm:import-meta-resolve", + "data": { + "version": "4.1.0", + "packageName": "import-meta-resolve", + "hash": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:infer-owner": { + "type": "npm", + "name": "npm:infer-owner", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "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:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:ini@4.1.1": { + "type": "npm", + "name": "npm:ini@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ini", + "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" + } + }, + "npm:init-package-json": { + "type": "npm", + "name": "npm:init-package-json", + "data": { + "version": "5.0.0", + "packageName": "init-package-json", + "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.5", + "packageName": "inquirer", + "hash": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.7", + "packageName": "internal-slot", + "hash": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==" + } + }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "1.4.0", + "packageName": "interpret", + "hash": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + } + }, + "npm:intl-messageformat-parser": { + "type": "npm", + "name": "npm:intl-messageformat-parser", + "data": { + "version": "6.1.2", + "packageName": "intl-messageformat-parser", + "hash": "sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==" + } + }, + "npm:ip-address": { + "type": "npm", + "name": "npm:ip-address", + "data": { + "version": "9.0.5", + "packageName": "ip-address", + "hash": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.4", + "packageName": "is-array-buffer", + "hash": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-arrayish@0.3.2": { + "type": "npm", + "name": "npm:is-arrayish@0.3.2", + "data": { + "version": "0.3.2", + "packageName": "is-arrayish", + "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "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-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-core-module@2.15.1": { + "type": "npm", + "name": "npm:is-core-module@2.15.1", + "data": { + "version": "2.15.1", + "packageName": "is-core-module", + "hash": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==" + } + }, + "npm:is-data-view": { + "type": "npm", + "name": "npm:is-data-view", + "data": { + "version": "1.0.1", + "packageName": "is-data-view", + "hash": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==" + } + }, + "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-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-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-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.3", + "packageName": "is-negative-zero", + "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + } + }, + "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-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "1.0.1", + "packageName": "is-obj", + "hash": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" + } + }, + "npm:is-obj@2.0.0": { + "type": "npm", + "name": "npm:is-obj@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-object": { + "type": "npm", + "name": "npm:is-object", + "data": { + "version": "1.0.2", + "packageName": "is-object", + "hash": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" + } + }, + "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: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-plain-object@5.0.0": { + "type": "npm", + "name": "npm:is-plain-object@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "is-plain-object", + "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + }, + "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-regexp": { + "type": "npm", + "name": "npm:is-regexp", + "data": { + "version": "1.0.0", + "packageName": "is-regexp", + "hash": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.3", + "packageName": "is-shared-array-buffer", + "hash": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==" + } + }, + "npm:is-ssh": { + "type": "npm", + "name": "npm:is-ssh", + "data": { + "version": "1.4.0", + "packageName": "is-ssh", + "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.0", + "packageName": "is-stream", + "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + } + }, + "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-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-subdir": { + "type": "npm", + "name": "npm:is-subdir", + "data": { + "version": "1.2.0", + "packageName": "is-subdir", + "hash": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==" + } + }, + "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": "1.0.1", + "packageName": "is-text-path", + "hash": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.13", + "packageName": "is-typed-array", + "hash": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==" + } + }, + "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-utf8": { + "type": "npm", + "name": "npm:is-utf8", + "data": { + "version": "0.2.1", + "packageName": "is-utf8", + "hash": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + } + }, + "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-windows": { + "type": "npm", + "name": "npm:is-windows", + "data": { + "version": "1.0.2", + "packageName": "is-windows", + "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "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": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isbinaryfile": { + "type": "npm", + "name": "npm:isbinaryfile", + "data": { + "version": "4.0.10", + "packageName": "isbinaryfile", + "hash": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + } + }, + "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-hook": { + "type": "npm", + "name": "npm:istanbul-lib-hook", + "data": { + "version": "3.0.0", + "packageName": "istanbul-lib-hook", + "hash": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "4.0.3", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==" + } + }, + "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@6.0.3": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==" + } + }, + "npm:istanbul-lib-processinfo": { + "type": "npm", + "name": "npm:istanbul-lib-processinfo", + "data": { + "version": "2.0.3", + "packageName": "istanbul-lib-processinfo", + "hash": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==" + } + }, + "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.7", + "packageName": "istanbul-reports", + "hash": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "3.4.3", + "packageName": "jackspeak", + "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.7", + "packageName": "jake", + "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" + } + }, + "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: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.5.0", + "packageName": "jest-config", + "hash": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==" + } + }, + "npm:jest-config@29.7.0": { + "type": "npm", + "name": "npm:jest-config@29.7.0", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff@25.5.0": { + "type": "npm", + "name": "npm:jest-diff@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "jest-diff", + "hash": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==" + } + }, + "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.5.0", + "packageName": "jest-environment-node", + "hash": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==" + } + }, + "npm:jest-environment-node@29.7.0": { + "type": "npm", + "name": "npm:jest-environment-node@29.7.0", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-esm-transformer": { + "type": "npm", + "name": "npm:jest-esm-transformer", + "data": { + "version": "1.0.0", + "packageName": "jest-esm-transformer", + "hash": "sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==" + } + }, + "npm:jest-extended": { + "type": "npm", + "name": "npm:jest-extended", + "data": { + "version": "3.2.3", + "packageName": "jest-extended", + "hash": "sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA==" + } + }, + "npm:jest-get-type@25.2.6": { + "type": "npm", + "name": "npm:jest-get-type@25.2.6", + "data": { + "version": "25.2.6", + "packageName": "jest-get-type", + "hash": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==" + } + }, + "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-junit": { + "type": "npm", + "name": "npm:jest-junit", + "data": { + "version": "15.0.0", + "packageName": "jest-junit", + "hash": "sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==" + } + }, + "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@25.5.0": { + "type": "npm", + "name": "npm:jest-matcher-utils@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==" + } + }, + "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@25.5.0": { + "type": "npm", + "name": "npm:jest-message-util@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "jest-message-util", + "hash": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==" + } + }, + "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-regex-util@25.2.6": { + "type": "npm", + "name": "npm:jest-regex-util@25.2.6", + "data": { + "version": "25.2.6", + "packageName": "jest-regex-util", + "hash": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==" + } + }, + "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-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:jest-resolve@25.5.1": { + "type": "npm", + "name": "npm:jest-resolve@25.5.1", + "data": { + "version": "25.5.1", + "packageName": "jest-resolve", + "hash": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "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": "25.5.1", + "packageName": "jest-snapshot", + "hash": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==" + } + }, + "npm:jest-snapshot@29.7.0": { + "type": "npm", + "name": "npm:jest-snapshot@29.7.0", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-sonar": { + "type": "npm", + "name": "npm:jest-sonar", + "data": { + "version": "0.2.16", + "packageName": "jest-sonar", + "hash": "sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==" + } + }, + "npm:jest-specific-snapshot": { + "type": "npm", + "name": "npm:jest-specific-snapshot", + "data": { + "version": "3.0.0", + "packageName": "jest-specific-snapshot", + "hash": "sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==" + } + }, + "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@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:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.5.0", + "packageName": "jest", + "hash": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==" + } + }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "1.21.6", + "packageName": "jiti", + "hash": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "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:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + } + }, + "npm:jsbn@1.1.0": { + "type": "npm", + "name": "npm:jsbn@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "jsbn", + "hash": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + } + }, + "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": "3.0.2", + "packageName": "jsesc", + "hash": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" + } + }, + "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@2.3.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "3.0.2", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==" + } + }, + "npm:json-schema-ref-parser": { + "type": "npm", + "name": "npm:json-schema-ref-parser", + "data": { + "version": "9.0.9", + "packageName": "json-schema-ref-parser", + "hash": "sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==" + } + }, + "npm:json-schema-to-typescript": { + "type": "npm", + "name": "npm:json-schema-to-typescript", + "data": { + "version": "10.0.3", + "packageName": "json-schema-to-typescript", + "hash": "sha512-CKM7XZqjKhsC96RWTdczTZc5KSv1PfgwGjprf7poO0osmgKmFp2Sj10jCi96gu73naVLJtrX8x7nAf9Vq2fl2Q==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "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-stable-stringify": { + "type": "npm", + "name": "npm:json-stable-stringify", + "data": { + "version": "1.1.1", + "packageName": "json-stable-stringify", + "hash": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==" + } + }, + "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@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: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@4.0.0": { + "type": "npm", + "name": "npm:jsonfile@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonify": { + "type": "npm", + "name": "npm:jsonify", + "data": { + "version": "0.0.1", + "packageName": "jsonify", + "hash": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "1.4.2", + "packageName": "jsprim", + "hash": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:klaw-sync": { + "type": "npm", + "name": "npm:klaw-sync", + "data": { + "version": "6.0.0", + "packageName": "klaw-sync", + "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" + } + }, + "npm:kleur@3.0.3": { + "type": "npm", + "name": "npm:kleur@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:kuler": { + "type": "npm", + "name": "npm:kuler", + "data": { + "version": "2.0.0", + "packageName": "kuler", + "hash": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + } + }, + "npm:lcov-parse": { + "type": "npm", + "name": "npm:lcov-parse", + "data": { + "version": "1.0.0", + "packageName": "lcov-parse", + "hash": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==" + } + }, + "npm:lerna": { + "type": "npm", + "name": "npm:lerna", + "data": { + "version": "7.4.2", + "packageName": "lerna", + "hash": "sha512-gxavfzHfJ4JL30OvMunmlm4Anw7d7Tq6tdVHzUukLdS9nWnxCN/QB21qR+VJYp5tcyXogHKbdUEGh6qmeyzxSA==" + } + }, + "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:libnpmaccess": { + "type": "npm", + "name": "npm:libnpmaccess", + "data": { + "version": "7.0.2", + "packageName": "libnpmaccess", + "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" + } + }, + "npm:libnpmpublish": { + "type": "npm", + "name": "npm:libnpmpublish", + "data": { + "version": "7.3.0", + "packageName": "libnpmpublish", + "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" + } + }, + "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: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:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "10.5.3", + "packageName": "lint-staged", + "hash": "sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==" + } + }, + "npm:listenercount": { + "type": "npm", + "name": "npm:listenercount", + "data": { + "version": "1.0.1", + "packageName": "listenercount", + "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:load-json-file@4.0.0": { + "type": "npm", + "name": "npm:load-json-file@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "6.2.0", + "packageName": "load-json-file", + "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" + } + }, + "npm:load-yaml-file": { + "type": "npm", + "name": "npm:load-yaml-file", + "data": { + "version": "0.2.0", + "packageName": "load-yaml-file", + "hash": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "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": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "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:lodash.flattendeep": { + "type": "npm", + "name": "npm:lodash.flattendeep", + "data": { + "version": "4.4.0", + "packageName": "lodash.flattendeep", + "hash": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" + } + }, + "npm:lodash.ismatch": { + "type": "npm", + "name": "npm:lodash.ismatch", + "data": { + "version": "4.4.0", + "packageName": "lodash.ismatch", + "hash": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==" + } + }, + "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.map": { + "type": "npm", + "name": "npm:lodash.map", + "data": { + "version": "4.6.0", + "packageName": "lodash.map", + "hash": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" + } + }, + "npm:lodash.mapvalues": { + "type": "npm", + "name": "npm:lodash.mapvalues", + "data": { + "version": "4.6.0", + "packageName": "lodash.mapvalues", + "hash": "sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==" + } + }, + "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.mergewith": { + "type": "npm", + "name": "npm:lodash.mergewith", + "data": { + "version": "4.6.2", + "packageName": "lodash.mergewith", + "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + } + }, + "npm:lodash.startcase": { + "type": "npm", + "name": "npm:lodash.startcase", + "data": { + "version": "4.4.0", + "packageName": "lodash.startcase", + "hash": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==" + } + }, + "npm:lodash.truncate": { + "type": "npm", + "name": "npm:lodash.truncate", + "data": { + "version": "4.4.2", + "packageName": "lodash.truncate", + "hash": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash@4.17.15": { + "type": "npm", + "name": "npm:lodash@4.17.15", + "data": { + "version": "4.17.15", + "packageName": "lodash", + "hash": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + } + }, + "npm:lodash@4.17.20": { + "type": "npm", + "name": "npm:lodash@4.17.20", + "data": { + "version": "4.17.20", + "packageName": "lodash", + "hash": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:log-driver": { + "type": "npm", + "name": "npm:log-driver", + "data": { + "version": "1.2.7", + "packageName": "log-driver", + "hash": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==" + } + }, + "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:logform": { + "type": "npm", + "name": "npm:logform", + "data": { + "version": "2.6.0", + "packageName": "logform", + "hash": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==" + } + }, + "npm:longest": { + "type": "npm", + "name": "npm:longest", + "data": { + "version": "2.0.1", + "packageName": "longest", + "hash": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==" + } + }, + "npm:loud-rejection": { + "type": "npm", + "name": "npm:loud-rejection", + "data": { + "version": "2.2.0", + "packageName": "loud-rejection", + "hash": "sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==" + } + }, + "npm:lru-cache@10.4.3": { + "type": "npm", + "name": "npm:lru-cache@10.4.3", + "data": { + "version": "10.4.3", + "packageName": "lru-cache", + "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + }, + "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@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "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-queue": { + "type": "npm", + "name": "npm:lru-queue", + "data": { + "version": "0.1.0", + "packageName": "lru-queue", + "hash": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.11", + "packageName": "magic-string", + "hash": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==" + } + }, + "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: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-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:make-fetch-happen@10.2.1": { + "type": "npm", + "name": "npm:make-fetch-happen@10.2.1", + "data": { + "version": "10.2.1", + "packageName": "make-fetch-happen", + "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:map-obj@1.0.1": { + "type": "npm", + "name": "npm:map-obj@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "map-obj", + "hash": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==" + } + }, + "npm:map-obj": { + "type": "npm", + "name": "npm:map-obj", + "data": { + "version": "4.3.0", + "packageName": "map-obj", + "hash": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" + } + }, + "npm:matomo-tracker": { + "type": "npm", + "name": "npm:matomo-tracker", + "data": { + "version": "2.2.2", + "packageName": "matomo-tracker", + "hash": "sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ==" + } + }, + "npm:mem-fs-editor": { + "type": "npm", + "name": "npm:mem-fs-editor", + "data": { + "version": "9.4.0", + "packageName": "mem-fs-editor", + "hash": "sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==" + } + }, + "npm:mem-fs": { + "type": "npm", + "name": "npm:mem-fs", + "data": { + "version": "2.1.0", + "packageName": "mem-fs", + "hash": "sha512-55vFOT4rfJx/9uoWntNrfzEj9209rd26spsSvKsCVBfOPH001YS5IakfElhcyagieC4uL++Ry/XDcwvgxF4/zQ==" + } + }, + "npm:memoizee": { + "type": "npm", + "name": "npm:memoizee", + "data": { + "version": "0.4.15", + "packageName": "memoizee", + "hash": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==" + } + }, + "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": "6.1.1", + "packageName": "meow", + "hash": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==" + } + }, + "npm:meow@8.1.2": { + "type": "npm", + "name": "npm:meow@8.1.2", + "data": { + "version": "8.1.2", + "packageName": "meow", + "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.3", + "packageName": "merge-descriptors", + "hash": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" + } + }, + "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:merge": { + "type": "npm", + "name": "npm:merge", + "data": { + "version": "2.1.1", + "packageName": "merge", + "hash": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==" + } + }, + "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:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.1", + "packageName": "min-indent", + "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + } + }, + "npm:minimatch@3.0.5": { + "type": "npm", + "name": "npm:minimatch@3.0.5", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "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@8.0.4": { + "type": "npm", + "name": "npm:minimatch@8.0.4", + "data": { + "version": "8.0.4", + "packageName": "minimatch", + "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" + } + }, + "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@9.0.5": { + "type": "npm", + "name": "npm:minimatch@9.0.5", + "data": { + "version": "9.0.5", + "packageName": "minimatch", + "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" + } + }, + "npm:minimist-options": { + "type": "npm", + "name": "npm:minimist-options", + "data": { + "version": "4.1.0", + "packageName": "minimist-options", + "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" + } + }, + "npm:minimist@1.2.7": { + "type": "npm", + "name": "npm:minimist@1.2.7", + "data": { + "version": "1.2.7", + "packageName": "minimist", + "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "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-fetch@2.1.2": { + "type": "npm", + "name": "npm:minipass-fetch@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "minipass-fetch", + "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.5", + "packageName": "minipass-fetch", + "hash": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==" + } + }, + "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.2", + "packageName": "minipass-json-stream", + "hash": "sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==" + } + }, + "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: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@4.2.8": { + "type": "npm", + "name": "npm:minipass@4.2.8", + "data": { + "version": "4.2.8", + "packageName": "minipass", + "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minipass@7.1.2": { + "type": "npm", + "name": "npm:minipass@7.1.2", + "data": { + "version": "7.1.2", + "packageName": "minipass", + "hash": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mixme": { + "type": "npm", + "name": "npm:mixme", + "data": { + "version": "0.5.10", + "packageName": "mixme", + "hash": "sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==" + } + }, + "npm:mkdirp@0.5.6": { + "type": "npm", + "name": "npm:mkdirp@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mock-fs": { + "type": "npm", + "name": "npm:mock-fs", + "data": { + "version": "5.2.0", + "packageName": "mock-fs", + "hash": "sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw==" + } + }, + "npm:modify-values": { + "type": "npm", + "name": "npm:modify-values", + "data": { + "version": "1.0.1", + "packageName": "modify-values", + "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" + } + }, + "npm:module-details-from-path": { + "type": "npm", + "name": "npm:module-details-from-path", + "data": { + "version": "1.0.3", + "packageName": "module-details-from-path", + "hash": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==" + } + }, + "npm:module-not-found-error": { + "type": "npm", + "name": "npm:module-not-found-error", + "data": { + "version": "1.0.1", + "packageName": "module-not-found-error", + "hash": "sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==" + } + }, + "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": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:multimatch": { + "type": "npm", + "name": "npm:multimatch", + "data": { + "version": "5.0.0", + "packageName": "multimatch", + "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" + } + }, + "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": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:mz": { + "type": "npm", + "name": "npm:mz", + "data": { + "version": "2.7.0", + "packageName": "mz", + "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" + } + }, + "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: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:next-tick": { + "type": "npm", + "name": "npm:next-tick", + "data": { + "version": "1.1.0", + "packageName": "next-tick", + "hash": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "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-fetch@2.6.7": { + "type": "npm", + "name": "npm:node-fetch@2.6.7", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.9", + "packageName": "node-fetch", + "hash": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.8.2", + "packageName": "node-gyp-build", + "hash": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "9.4.1", + "packageName": "node-gyp", + "hash": "sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==" + } + }, + "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-preload": { + "type": "npm", + "name": "npm:node-preload", + "data": { + "version": "0.2.1", + "packageName": "node-preload", + "hash": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.18", + "packageName": "node-releases", + "hash": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "6.0.0", + "packageName": "nopt", + "hash": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" + } + }, + "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-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "3.0.3", + "packageName": "normalize-package-data", + "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" + } + }, + "npm:normalize-package-data@5.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "1.1.2", + "packageName": "npm-bundled", + "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" + } + }, + "npm:npm-bundled@3.0.1": { + "type": "npm", + "name": "npm:npm-bundled@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "npm-bundled", + "hash": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==" + } + }, + "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": "1.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + } + }, + "npm:npm-normalize-package-bin@3.0.1": { + "type": "npm", + "name": "npm:npm-normalize-package-bin@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:npm-package-arg@10.1.0": { + "type": "npm", + "name": "npm:npm-package-arg@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "8.1.1", + "packageName": "npm-package-arg", + "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "5.1.1", + "packageName": "npm-packlist", + "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" + } + }, + "npm:npm-packlist@7.0.4": { + "type": "npm", + "name": "npm:npm-packlist@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "8.0.2", + "packageName": "npm-pick-manifest", + "hash": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==" + } + }, + "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-run-all": { + "type": "npm", + "name": "npm:npm-run-all", + "data": { + "version": "4.1.5", + "packageName": "npm-run-all", + "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" + } + }, + "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:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.13", + "packageName": "nwsapi", + "hash": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==" + } + }, + "npm:nx@16.10.0": { + "type": "npm", + "name": "npm:nx@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "nx", + "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "19.8.4", + "packageName": "nx", + "hash": "sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA==" + } + }, + "npm:nyc": { + "type": "npm", + "name": "npm:nyc", + "data": { + "version": "15.1.0", + "packageName": "nyc", + "hash": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==" + } + }, + "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.13.2", + "packageName": "object-inspect", + "hash": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" + } + }, + "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.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.8", + "packageName": "object.fromentries", + "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" + } + }, + "npm:object.groupby": { + "type": "npm", + "name": "npm:object.groupby", + "data": { + "version": "1.0.3", + "packageName": "object.groupby", + "hash": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.2.0", + "packageName": "object.values", + "hash": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:one-time": { + "type": "npm", + "name": "npm:one-time", + "data": { + "version": "1.0.0", + "packageName": "one-time", + "hash": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "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.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:outdent": { + "type": "npm", + "name": "npm:outdent", + "data": { + "version": "0.5.0", + "packageName": "outdent", + "hash": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "2.1.0", + "packageName": "p-filter", + "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "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-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@3.1.0": { + "type": "npm", + "name": "npm:p-limit@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "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": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "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-map-series": { + "type": "npm", + "name": "npm:p-map-series", + "data": { + "version": "2.1.0", + "packageName": "p-map-series", + "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" + } + }, + "npm:p-map@2.1.0": { + "type": "npm", + "name": "npm:p-map@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "p-map", + "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } + }, + "npm:p-map@3.0.0": { + "type": "npm", + "name": "npm:p-map@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-map", + "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:p-pipe": { + "type": "npm", + "name": "npm:p-pipe", + "data": { + "version": "3.1.0", + "packageName": "p-pipe", + "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" + } + }, + "npm:p-queue": { + "type": "npm", + "name": "npm:p-queue", + "data": { + "version": "6.6.2", + "packageName": "p-queue", + "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "3.2.0", + "packageName": "p-timeout", + "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" + } + }, + "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:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-waterfall": { + "type": "npm", + "name": "npm:p-waterfall", + "data": { + "version": "2.1.1", + "packageName": "p-waterfall", + "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" + } + }, + "npm:package-hash": { + "type": "npm", + "name": "npm:package-hash", + "data": { + "version": "4.0.0", + "packageName": "package-hash", + "hash": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==" + } + }, + "npm:package-json-from-dist": { + "type": "npm", + "name": "npm:package-json-from-dist", + "data": { + "version": "1.0.1", + "packageName": "package-json-from-dist", + "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.2.0", + "packageName": "pacote", + "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" + } + }, + "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-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:parse-passwd": { + "type": "npm", + "name": "npm:parse-passwd", + "data": { + "version": "1.0.0", + "packageName": "parse-passwd", + "hash": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==" + } + }, + "npm:parse-path": { + "type": "npm", + "name": "npm:parse-path", + "data": { + "version": "7.0.0", + "packageName": "parse-path", + "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" + } + }, + "npm:parse-url": { + "type": "npm", + "name": "npm:parse-url", + "data": { + "version": "8.1.0", + "packageName": "parse-url", + "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "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-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "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-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key@3.1.1": { + "type": "npm", + "name": "npm:path-key@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.11.1", + "packageName": "path-scurry", + "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" + } + }, + "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:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:pathval": { + "type": "npm", + "name": "npm:pathval", + "data": { + "version": "1.1.1", + "packageName": "pathval", + "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" + } + }, + "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.1.0", + "packageName": "picocolors", + "hash": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.3.1", + "packageName": "pidtree", + "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" + } + }, + "npm:pify@2.3.0": { + "type": "npm", + "name": "npm:pify@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "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@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": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "5.0.0", + "packageName": "pify", + "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "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: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:possible-typed-array-names": { + "type": "npm", + "name": "npm:possible-typed-array-names", + "data": { + "version": "1.0.0", + "packageName": "possible-typed-array-names", + "hash": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.47", + "packageName": "postcss", + "hash": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==" + } + }, + "npm:preferred-pm": { + "type": "npm", + "name": "npm:preferred-pm", + "data": { + "version": "3.1.4", + "packageName": "preferred-pm", + "hash": "sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==" + } + }, + "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.7", + "packageName": "prettier", + "hash": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==" + } + }, + "npm:pretty-format@25.5.0": { + "type": "npm", + "name": "npm:pretty-format@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "pretty-format", + "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" + } + }, + "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:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" + } + }, + "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-on-spawn": { + "type": "npm", + "name": "npm:process-on-spawn", + "data": { + "version": "1.0.0", + "packageName": "process-on-spawn", + "hash": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:promzard": { + "type": "npm", + "name": "npm:promzard", + "data": { + "version": "1.0.2", + "packageName": "promzard", + "hash": "sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==" + } + }, + "npm:protocols": { + "type": "npm", + "name": "npm:protocols", + "data": { + "version": "2.0.1", + "packageName": "protocols", + "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:proxyquire": { + "type": "npm", + "name": "npm:proxyquire", + "data": { + "version": "2.1.3", + "packageName": "proxyquire", + "hash": "sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==" + } + }, + "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.2", + "packageName": "pump", + "hash": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==" + } + }, + "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.1.0", + "packageName": "pure-rand", + "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" + } + }, + "npm:q": { + "type": "npm", + "name": "npm:q", + "data": { + "version": "1.5.1", + "packageName": "q", + "hash": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.5.3", + "packageName": "qs", + "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + } + }, + "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-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "4.0.1", + "packageName": "quick-lru", + "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "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:read-cmd-shim": { + "type": "npm", + "name": "npm:read-cmd-shim", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" + } + }, + "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-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "3.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==" + } + }, + "npm:read-pkg-up@7.0.1": { + "type": "npm", + "name": "npm:read-pkg-up@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "read-pkg-up", + "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" + } + }, + "npm:read-pkg@5.2.0": { + "type": "npm", + "name": "npm:read-pkg@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "read-pkg", + "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + } + }, + "npm:read-yaml-file": { + "type": "npm", + "name": "npm:read-yaml-file", + "data": { + "version": "1.1.0", + "packageName": "read-yaml-file", + "hash": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==" + } + }, + "npm:read": { + "type": "npm", + "name": "npm:read", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" + } + }, + "npm:read@3.0.1": { + "type": "npm", + "name": "npm:read@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "read", + "hash": "sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==" + } + }, + "npm:readable-stream@2.3.8": { + "type": "npm", + "name": "npm:readable-stream@2.3.8", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:realpath-native": { + "type": "npm", + "name": "npm:realpath-native", + "data": { + "version": "2.0.0", + "packageName": "realpath-native", + "hash": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.6.2", + "packageName": "rechoir", + "hash": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.14.1", + "packageName": "regenerator-runtime", + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + }, + "npm:regexp-to-ast": { + "type": "npm", + "name": "npm:regexp-to-ast", + "data": { + "version": "0.5.0", + "packageName": "regexp-to-ast", + "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.3", + "packageName": "regexp.prototype.flags", + "hash": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.2.0", + "packageName": "regexpp", + "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + } + }, + "npm:release-zalgo": { + "type": "npm", + "name": "npm:release-zalgo", + "data": { + "version": "1.0.0", + "packageName": "release-zalgo", + "hash": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==" + } + }, + "npm:remove-trailing-separator": { + "type": "npm", + "name": "npm:remove-trailing-separator", + "data": { + "version": "1.1.0", + "packageName": "remove-trailing-separator", + "hash": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + } + }, + "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-ext": { + "type": "npm", + "name": "npm:replace-ext", + "data": { + "version": "1.0.1", + "packageName": "replace-ext", + "hash": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" + } + }, + "npm:request": { + "type": "npm", + "name": "npm:request", + "data": { + "version": "2.88.2", + "packageName": "request", + "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" + } + }, + "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:require-in-the-middle": { + "type": "npm", + "name": "npm:require-in-the-middle", + "data": { + "version": "7.4.0", + "packageName": "require-in-the-middle", + "hash": "sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==" + } + }, + "npm:require-main-filename": { + "type": "npm", + "name": "npm:require-main-filename", + "data": { + "version": "2.0.0", + "packageName": "require-main-filename", + "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "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-dir": { + "type": "npm", + "name": "npm:resolve-dir", + "data": { + "version": "1.0.1", + "packageName": "resolve-dir", + "hash": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==" + } + }, + "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:resolve-global": { + "type": "npm", + "name": "npm:resolve-global", + "data": { + "version": "1.0.0", + "packageName": "resolve-global", + "hash": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==" + } + }, + "npm:resolve-pkg-maps": { + "type": "npm", + "name": "npm:resolve-pkg-maps", + "data": { + "version": "1.0.0", + "packageName": "resolve-pkg-maps", + "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve@1.1.7": { + "type": "npm", + "name": "npm:resolve@1.1.7", + "data": { + "version": "1.1.7", + "packageName": "resolve", + "hash": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" + } + }, + "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.4.1", + "packageName": "rfdc", + "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@4.4.1": { + "type": "npm", + "name": "npm:rimraf@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "rimraf", + "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" + } + }, + "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-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.1.2", + "packageName": "safe-array-concat", + "hash": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==" + } + }, + "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": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.3", + "packageName": "safe-regex-test", + "hash": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==" + } + }, + "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:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "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@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@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.3.2": { + "type": "npm", + "name": "npm:semver@7.3.2", + "data": { + "version": "7.3.2", + "packageName": "semver", + "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.3.7", + "packageName": "semver", + "hash": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" + } + }, + "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.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:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.2", + "packageName": "serialize-javascript", + "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.2.2", + "packageName": "set-function-length", + "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.2", + "packageName": "set-function-name", + "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command@2.0.0": { + "type": "npm", + "name": "npm:shebang-command@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "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": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:shelljs": { + "type": "npm", + "name": "npm:shelljs", + "data": { + "version": "0.8.5", + "packageName": "shelljs", + "hash": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" + } + }, + "npm:shimmer": { + "type": "npm", + "name": "npm:shimmer", + "data": { + "version": "1.2.1", + "packageName": "shimmer", + "hash": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" + } + }, + "npm:shx": { + "type": "npm", + "name": "npm:shx", + "data": { + "version": "0.3.3", + "packageName": "shx", + "hash": "sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.6", + "packageName": "side-channel", + "hash": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==" + } + }, + "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: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:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.9.0", + "packageName": "sigstore", + "hash": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==" + } + }, + "npm:simple-git": { + "type": "npm", + "name": "npm:simple-git", + "data": { + "version": "3.12.0", + "packageName": "simple-git", + "hash": "sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.2", + "packageName": "simple-swizzle", + "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "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:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:smartwrap": { + "type": "npm", + "name": "npm:smartwrap", + "data": { + "version": "2.0.2", + "packageName": "smartwrap", + "hash": "sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==" + } + }, + "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:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.8.3", + "packageName": "socks", + "hash": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==" + } + }, + "npm:sort-any": { + "type": "npm", + "name": "npm:sort-any", + "data": { + "version": "1.2.9", + "packageName": "sort-any", + "hash": "sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.2.1", + "packageName": "source-map-js", + "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + } + }, + "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.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support@0.5.21": { + "type": "npm", + "name": "npm:source-map-support@0.5.21", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map@0.5.6": { + "type": "npm", + "name": "npm:source-map@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "source-map", + "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:spawn-wrap": { + "type": "npm", + "name": "npm:spawn-wrap", + "data": { + "version": "2.0.0", + "packageName": "spawn-wrap", + "hash": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==" + } + }, + "npm:spawndamnit": { + "type": "npm", + "name": "npm:spawndamnit", + "data": { + "version": "2.0.0", + "packageName": "spawndamnit", + "hash": "sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.5.0", + "packageName": "spdx-exceptions", + "hash": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.20", + "packageName": "spdx-license-ids", + "hash": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "3.2.2", + "packageName": "split2", + "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sprintf-js@1.1.3": { + "type": "npm", + "name": "npm:sprintf-js@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "sprintf-js", + "hash": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.18.0", + "packageName": "sshpk", + "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" + } + }, + "npm:ssri@10.0.6": { + "type": "npm", + "name": "npm:ssri@10.0.6", + "data": { + "version": "10.0.6", + "packageName": "ssri", + "hash": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "9.0.1", + "packageName": "ssri", + "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" + } + }, + "npm:stack-chain": { + "type": "npm", + "name": "npm:stack-chain", + "data": { + "version": "1.3.7", + "packageName": "stack-chain", + "hash": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==" + } + }, + "npm:stack-generator": { + "type": "npm", + "name": "npm:stack-generator", + "data": { + "version": "2.0.10", + "packageName": "stack-generator", + "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" + } + }, + "npm:stack-trace": { + "type": "npm", + "name": "npm:stack-trace", + "data": { + "version": "0.0.10", + "packageName": "stack-trace", + "hash": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" + } + }, + "npm:stack-utils@1.0.5": { + "type": "npm", + "name": "npm:stack-utils@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "stack-utils", + "hash": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:stackframe": { + "type": "npm", + "name": "npm:stackframe", + "data": { + "version": "1.3.4", + "packageName": "stackframe", + "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + } + }, + "npm:stacktrace-gps": { + "type": "npm", + "name": "npm:stacktrace-gps", + "data": { + "version": "3.1.2", + "packageName": "stacktrace-gps", + "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" + } + }, + "npm:stacktrace-js": { + "type": "npm", + "name": "npm:stacktrace-js", + "data": { + "version": "2.0.2", + "packageName": "stacktrace-js", + "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" + } + }, + "npm:stdin": { + "type": "npm", + "name": "npm:stdin", + "data": { + "version": "0.0.1", + "packageName": "stdin", + "hash": "sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ==" + } + }, + "npm:stream-transform": { + "type": "npm", + "name": "npm:stream-transform", + "data": { + "version": "2.1.3", + "packageName": "stream-transform", + "hash": "sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==" + } + }, + "npm:streamroller": { + "type": "npm", + "name": "npm:streamroller", + "data": { + "version": "2.2.3", + "packageName": "streamroller", + "hash": "sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.1", + "packageName": "string-argv", + "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string-replace-loader": { + "type": "npm", + "name": "npm:string-replace-loader", + "data": { + "version": "3.1.0", + "packageName": "string-replace-loader", + "hash": "sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "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-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.1.6", + "packageName": "string.prototype.padend", + "hash": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.9", + "packageName": "string.prototype.trim", + "hash": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.8", + "packageName": "string.prototype.trimend", + "hash": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.8", + "packageName": "string.prototype.trimstart", + "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" + } + }, + "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_decoder@1.3.0": { + "type": "npm", + "name": "npm:string_decoder@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:stringify-object": { + "type": "npm", + "name": "npm:stringify-object", + "data": { + "version": "3.3.0", + "packageName": "stringify-object", + "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "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-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-bom-buf": { + "type": "npm", + "name": "npm:strip-bom-buf", + "data": { + "version": "1.0.0", + "packageName": "strip-bom-buf", + "hash": "sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==" + } + }, + "npm:strip-bom-stream": { + "type": "npm", + "name": "npm:strip-bom-stream", + "data": { + "version": "2.0.0", + "packageName": "strip-bom-stream", + "hash": "sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==" + } + }, + "npm:strip-bom@2.0.0": { + "type": "npm", + "name": "npm:strip-bom@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-bom", + "hash": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==" + } + }, + "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:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "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:strnum": { + "type": "npm", + "name": "npm:strnum", + "data": { + "version": "1.0.5", + "packageName": "strnum", + "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + } + }, + "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:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "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@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-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: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:table": { + "type": "npm", + "name": "npm:table", + "data": { + "version": "6.8.1", + "packageName": "table", + "hash": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==" + } + }, + "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:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.11", + "packageName": "tar", + "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:temp-dir@2.0.0": { + "type": "npm", + "name": "npm:temp-dir@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "temp-dir", + "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + } + }, + "npm:tempfile": { + "type": "npm", + "name": "npm:tempfile", + "data": { + "version": "3.0.0", + "packageName": "tempfile", + "hash": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==" + } + }, + "npm:term-size": { + "type": "npm", + "name": "npm:term-size", + "data": { + "version": "2.2.1", + "packageName": "term-size", + "hash": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.10", + "packageName": "terser-webpack-plugin", + "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.34.1", + "packageName": "terser", + "hash": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==" + } + }, + "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": "1.9.0", + "packageName": "text-extensions", + "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" + } + }, + "npm:text-hex": { + "type": "npm", + "name": "npm:text-hex", + "data": { + "version": "1.0.0", + "packageName": "text-hex", + "hash": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + } + }, + "npm:textextensions": { + "type": "npm", + "name": "npm:textextensions", + "data": { + "version": "5.16.0", + "packageName": "textextensions", + "hash": "sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==" + } + }, + "npm:thenify-all": { + "type": "npm", + "name": "npm:thenify-all", + "data": { + "version": "1.6.0", + "packageName": "thenify-all", + "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" + } + }, + "npm:thenify": { + "type": "npm", + "name": "npm:thenify", + "data": { + "version": "3.3.1", + "packageName": "thenify", + "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" + } + }, + "npm:through2@2.0.5": { + "type": "npm", + "name": "npm:through2@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "4.0.2", + "packageName": "through2", + "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:timers-ext": { + "type": "npm", + "name": "npm:timers-ext", + "data": { + "version": "0.1.7", + "packageName": "timers-ext", + "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" + } + }, + "npm:tmp-promise": { + "type": "npm", + "name": "npm:tmp-promise", + "data": { + "version": "3.0.2", + "packageName": "tmp-promise", + "hash": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==" + } + }, + "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: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-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:tough-cookie@2.5.0": { + "type": "npm", + "name": "npm:tough-cookie@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "tough-cookie", + "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.4", + "packageName": "tough-cookie", + "hash": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tr46@3.0.0": { + "type": "npm", + "name": "npm:tr46@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.3.9", + "packageName": "traverse", + "hash": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==" + } + }, + "npm:trim-newlines": { + "type": "npm", + "name": "npm:trim-newlines", + "data": { + "version": "3.0.1", + "packageName": "trim-newlines", + "hash": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" + } + }, + "npm:triple-beam": { + "type": "npm", + "name": "npm:triple-beam", + "data": { + "version": "1.3.0", + "packageName": "triple-beam", + "hash": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.0.5", + "packageName": "ts-jest", + "hash": "sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "8.5.2", + "packageName": "ts-node", + "hash": "sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A==" + } + }, + "npm:tsconfig-paths@3.15.0": { + "type": "npm", + "name": "npm:tsconfig-paths@3.15.0", + "data": { + "version": "3.15.0", + "packageName": "tsconfig-paths", + "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" + } + }, + "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: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:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.7.0", + "packageName": "tslib", + "hash": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:tty-table": { + "type": "npm", + "name": "npm:tty-table", + "data": { + "version": "4.2.3", + "packageName": "tty-table", + "hash": "sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.7", + "packageName": "tuf-js", + "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" + } + }, + "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: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-fest@0.13.1": { + "type": "npm", + "name": "npm:type-fest@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "type-fest", + "hash": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==" + } + }, + "npm:type-fest@0.18.1": { + "type": "npm", + "name": "npm:type-fest@0.18.1", + "data": { + "version": "0.18.1", + "packageName": "type-fest", + "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + } + }, + "npm:type-fest@0.21.3": { + "type": "npm", + "name": "npm:type-fest@0.21.3", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:type-fest@0.4.1": { + "type": "npm", + "name": "npm:type-fest@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "type-fest", + "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" + } + }, + "npm:type-fest@0.6.0": { + "type": "npm", + "name": "npm:type-fest@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "type-fest", + "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.8.1", + "packageName": "type-fest", + "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + }, + "npm:type": { + "type": "npm", + "name": "npm:type", + "data": { + "version": "1.2.0", + "packageName": "type", + "hash": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + } + }, + "npm:type@2.7.2": { + "type": "npm", + "name": "npm:type@2.7.2", + "data": { + "version": "2.7.2", + "packageName": "type", + "hash": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "typed-array-buffer", + "hash": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.1", + "packageName": "typed-array-byte-length", + "hash": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.2", + "packageName": "typed-array-byte-offset", + "hash": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.6", + "packageName": "typed-array-length", + "hash": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==" + } + }, + "npm:typedarray-to-buffer": { + "type": "npm", + "name": "npm:typedarray-to-buffer", + "data": { + "version": "3.1.5", + "packageName": "typedarray-to-buffer", + "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + } + }, + "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": "4.9.4", + "packageName": "typescript", + "hash": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.19.3", + "packageName": "uglify-js", + "hash": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:unique-filename@2.0.1": { + "type": "npm", + "name": "npm:unique-filename@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "unique-filename", + "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" + } + }, + "npm:unique-slug@3.0.0": { + "type": "npm", + "name": "npm:unique-slug@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unique-slug", + "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" + } + }, + "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: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:unzipper": { + "type": "npm", + "name": "npm:unzipper", + "data": { + "version": "0.10.14", + "packageName": "unzipper", + "hash": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==" + } + }, + "npm:upath": { + "type": "npm", + "name": "npm:upath", + "data": { + "version": "2.0.1", + "packageName": "upath", + "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.1.1", + "packageName": "update-browserslist-db", + "hash": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==" + } + }, + "npm:update-ts-references": { + "type": "npm", + "name": "npm:update-ts-references", + "data": { + "version": "3.2.1", + "packageName": "update-ts-references", + "hash": "sha512-ur9psM1Jvg67Y1ErSIX/zAG5t934ZfZwigB4hZwzmOwn4Cgez3sEoUUvSYvvxj4nLgWdkPKQVDL53MwA+DEndw==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + } + }, + "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:uuid@9.0.1": { + "type": "npm", + "name": "npm:uuid@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "uuid", + "hash": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" + } + }, + "npm:v8-compile-cache@2.3.0": { + "type": "npm", + "name": "npm:v8-compile-cache@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.4.0", + "packageName": "v8-compile-cache", + "hash": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.3.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + } + }, + "npm:validate-npm-package-name@3.0.0": { + "type": "npm", + "name": "npm:validate-npm-package-name@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" + } + }, + "npm:vinyl-file": { + "type": "npm", + "name": "npm:vinyl-file", + "data": { + "version": "3.0.0", + "packageName": "vinyl-file", + "hash": "sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==" + } + }, + "npm:vinyl": { + "type": "npm", + "name": "npm:vinyl", + "data": { + "version": "2.2.1", + "packageName": "vinyl", + "hash": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==" + } + }, + "npm:vscode-jsonrpc": { + "type": "npm", + "name": "npm:vscode-jsonrpc", + "data": { + "version": "8.0.2", + "packageName": "vscode-jsonrpc", + "hash": "sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==" + } + }, + "npm:vscode-languageclient": { + "type": "npm", + "name": "npm:vscode-languageclient", + "data": { + "version": "8.0.2", + "packageName": "vscode-languageclient", + "hash": "sha512-lHlthJtphG9gibGb/y72CKqQUxwPsMXijJVpHEC2bvbFqxmkj9LwQ3aGU9dwjBLqsX1S4KjShYppLvg1UJDF/Q==" + } + }, + "npm:vscode-languageserver-protocol": { + "type": "npm", + "name": "npm:vscode-languageserver-protocol", + "data": { + "version": "3.17.2", + "packageName": "vscode-languageserver-protocol", + "hash": "sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.1": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.11": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.11", + "data": { + "version": "1.0.11", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==" + } + }, + "npm:vscode-languageserver-textdocument": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument", + "data": { + "version": "1.0.12", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.7": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.7", + "data": { + "version": "1.0.7", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" + } + }, + "npm:vscode-languageserver-types": { + "type": "npm", + "name": "npm:vscode-languageserver-types", + "data": { + "version": "3.17.2", + "packageName": "vscode-languageserver-types", + "hash": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==" + } + }, + "npm:vscode-languageserver": { + "type": "npm", + "name": "npm:vscode-languageserver", + "data": { + "version": "8.0.2", + "packageName": "vscode-languageserver", + "hash": "sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==" + } + }, + "npm:vscode-test": { + "type": "npm", + "name": "npm:vscode-test", + "data": { + "version": "1.6.1", + "packageName": "vscode-test", + "hash": "sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA==" + } + }, + "npm:vscode-uri": { + "type": "npm", + "name": "npm:vscode-uri", + "data": { + "version": "2.1.2", + "packageName": "vscode-uri", + "hash": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==" + } + }, + "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.2", + "packageName": "watchpack", + "hash": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" + } + }, + "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: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": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.95.0", + "packageName": "webpack", + "hash": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==" + } + }, + "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:whatwg-url@11.0.0": { + "type": "npm", + "name": "npm:whatwg-url@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "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-module": { + "type": "npm", + "name": "npm:which-module", + "data": { + "version": "2.0.1", + "packageName": "which-module", + "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + } + }, + "npm:which-pm": { + "type": "npm", + "name": "npm:which-pm", + "data": { + "version": "2.2.0", + "packageName": "which-pm", + "hash": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.15", + "packageName": "which-typed-array", + "hash": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==" + } + }, + "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@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "3.0.1", + "packageName": "which", + "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" + } + }, + "npm:winston-transport": { + "type": "npm", + "name": "npm:winston-transport", + "data": { + "version": "4.3.0", + "packageName": "winston-transport", + "hash": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==" + } + }, + "npm:winston-transport@4.6.0": { + "type": "npm", + "name": "npm:winston-transport@4.6.0", + "data": { + "version": "4.6.0", + "packageName": "winston-transport", + "hash": "sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==" + } + }, + "npm:winston": { + "type": "npm", + "name": "npm:winston", + "data": { + "version": "3.3.3", + "packageName": "winston", + "hash": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==" + } + }, + "npm:word-wrap": { + "type": "npm", + "name": "npm:word-wrap", + "data": { + "version": "1.2.5", + "packageName": "word-wrap", + "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + } + }, + "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: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-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:write-file-atomic@2.4.3": { + "type": "npm", + "name": "npm:write-file-atomic@2.4.3", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:write-file-atomic@3.0.3": { + "type": "npm", + "name": "npm:write-file-atomic@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "write-file-atomic", + "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" + } + }, + "npm:write-json-file": { + "type": "npm", + "name": "npm:write-json-file", + "data": { + "version": "3.2.0", + "packageName": "write-json-file", + "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" + } + }, + "npm:write-pkg": { + "type": "npm", + "name": "npm:write-pkg", + "data": { + "version": "4.0.0", + "packageName": "write-pkg", + "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.17.1", + "packageName": "ws", + "hash": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==" + } + }, + "npm:ws@8.18.0": { + "type": "npm", + "name": "npm:ws@8.18.0", + "data": { + "version": "8.18.0", + "packageName": "ws", + "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" + } + }, + "npm:xml-js": { + "type": "npm", + "name": "npm:xml-js", + "data": { + "version": "1.6.11", + "packageName": "xml-js", + "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + } + }, + "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:xml": { + "type": "npm", + "name": "npm:xml", + "data": { + "version": "1.0.1", + "packageName": "xml", + "hash": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==" + } + }, + "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": "4.0.3", + "packageName": "y18n", + "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + }, + "npm:y18n@5.0.8": { + "type": "npm", + "name": "npm:y18n@5.0.8", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "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@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:yaml@2.2.2": { + "type": "npm", + "name": "npm:yaml@2.2.2", + "data": { + "version": "2.2.2", + "packageName": "yaml", + "hash": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==" + } + }, + "npm:yargs-parser@18.1.3": { + "type": "npm", + "name": "npm:yargs-parser@18.1.3", + "data": { + "version": "18.1.3", + "packageName": "yargs-parser", + "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "20.2.4", + "packageName": "yargs-parser", + "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" + } + }, + "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@21.1.1": { + "type": "npm", + "name": "npm:yargs-parser@21.1.1", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "15.4.1", + "packageName": "yargs", + "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + } + }, + "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@17.7.2": { + "type": "npm", + "name": "npm:yargs@17.7.2", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "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==" + } + } + }, + "dependencies": { + "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext": [ + { + "source": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", + "target": "npm:fs-extra", + "type": "static" + } + ], + "vscode-ui5-language-assistant": [ + { + "source": "vscode-ui5-language-assistant", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:@types/vscode", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/binding-parser", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/settings", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/test-framework", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/user-facing-text", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/binding", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:@vscode-logging/types", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:axios", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:chai", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:mock-fs", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:proxyquire", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:vscode-uri", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:vscode-test", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "@ui5-language-assistant/language-server", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:@prettier/plugin-xml", + "type": "static" + }, + { + "source": "vscode-ui5-language-assistant", + "target": "npm:vscode-languageclient", + "type": "static" + } + ], + "@ui5-language-assistant/semantic-model-types": [ + { + "source": "@ui5-language-assistant/semantic-model-types", + "target": "@ui5-language-assistant/constant", + "type": "static" + } + ], + "@ui5-language-assistant/xml-views-completion": [ + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/semantic-model", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:chevrotain", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/settings", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:@xml-tools/content-assist", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:assert-never", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-completion", + "target": "npm:lodash", + "type": "static" + } + ], + "@ui5-language-assistant/xml-views-definition": [ + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "@ui5-language-assistant/test-framework", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "npm:vscode-languageserver-textdocument@1.0.1", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "npm:vscode-uri", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-definition", + "target": "@ui5-language-assistant/binding-parser", + "type": "static" + } + ], + "@ui5-language-assistant/xml-views-validation": [ + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/semantic-model", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/test-framework", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:@types/deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "@ui5-language-assistant/user-facing-text", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:assert-never", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:klaw-sync", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-validation", + "target": "npm:vscode-uri", + "type": "static" + } + ], + "@ui5-language-assistant/xml-views-quick-fix": [ + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "npm:@xml-tools/ast-position", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-quick-fix", + "target": "npm:lodash", + "type": "static" + } + ], + "@ui5-language-assistant/xml-views-tooltip": [ + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:assert-never", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "@ui5-language-assistant/semantic-model", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:@xml-tools/ast-position", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/xml-views-tooltip", + "target": "npm:lodash", + "type": "static" + } + ], + "@ui5-language-assistant/user-facing-text": [ + { + "source": "@ui5-language-assistant/user-facing-text", + "target": "npm:lodash", + "type": "static" + } + ], + "@ui5-language-assistant/language-server": [ + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/binding-parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@types/js-yaml", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@types/tmp", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:string-replace-loader", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/binding", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/fe", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/logger", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/semantic-model", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/settings", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/user-facing-text", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/xml-views-completion", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/xml-views-definition", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/xml-views-quick-fix", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/xml-views-tooltip", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "@ui5-language-assistant/xml-views-validation", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@xml-tools/ast-position", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:assert-never", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:i18next", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:jest-extended", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:klaw-sync", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:vscode-languageserver-textdocument@1.0.1", + "type": "static" + }, + { + "source": "@ui5-language-assistant/language-server", + "target": "npm:vscode-uri", + "type": "static" + } + ], + "@ui5-language-assistant/test-utils": [ + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "@ui5-language-assistant/language-server", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "@ui5-language-assistant/xml-views-completion", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:chai", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:deep-equal-in-any-order", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-utils", + "target": "npm:proxy-from-env", + "type": "static" + } + ], + "@ui5-language-assistant/binding-parser": [ + { + "source": "@ui5-language-assistant/binding-parser", + "target": "npm:cross-env", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding-parser", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding-parser", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding-parser", + "target": "npm:chevrotain@10.4.2", + "type": "static" + } + ], + "@ui5-language-assistant/semantic-model": [ + { + "source": "@ui5-language-assistant/semantic-model", + "target": "npm:@types/deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "npm:json-schema-to-typescript", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "@ui5-language-assistant/logger", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "npm:deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@ui5-language-assistant/semantic-model", + "target": "npm:lodash", + "type": "static" + } + ], + "@ui5-language-assistant/test-framework": [ + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:chevrotain", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:eslint-plugin-eslint-comments", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:i18next", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:vscode-languageserver-textdocument@1.0.11", + "type": "static" + }, + { + "source": "@ui5-language-assistant/test-framework", + "target": "npm:vscode-uri", + "type": "static" + } + ], + "@ui5-language-assistant/logic-utils": [ + { + "source": "@ui5-language-assistant/logic-utils", + "target": "@ui5-language-assistant/semantic-model", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "@ui5-language-assistant/settings", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "@ui5-language-assistant/logger", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logic-utils", + "target": "npm:chevrotain", + "type": "static" + } + ], + "@ui5-language-assistant/constant": [], + "@ui5-language-assistant/settings": [ + { + "source": "@ui5-language-assistant/settings", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/settings", + "target": "npm:@types/deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/settings", + "target": "npm:deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/settings", + "target": "npm:lodash", + "type": "static" + } + ], + "@ui5-language-assistant/binding": [ + { + "source": "@ui5-language-assistant/binding", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:@types/deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/test-framework", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/binding-parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/logger", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/settings", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "@ui5-language-assistant/xml-views-validation", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:@xml-tools/ast-position", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:@xml-tools/content-assist", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:i18next", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:vscode-languageserver-textdocument", + "type": "static" + }, + { + "source": "@ui5-language-assistant/binding", + "target": "npm:chevrotain", + "type": "static" + } + ], + "@ui5-language-assistant/context": [ + { + "source": "@ui5-language-assistant/context", + "target": "npm:@sap-ux/vocabularies-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@types/js-yaml", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/test-framework", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/test-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:tmp-promise", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:mock-fs", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:proxyquire", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@sap-ux/annotation-converter", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@sap-ux/edmx-parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@sap-ux/project-access", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/constant", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/language-server", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/logger", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "@ui5-language-assistant/semantic-model", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:globby", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:semver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:vscode-languageserver", + "type": "static" + }, + { + "source": "@ui5-language-assistant/context", + "target": "npm:vscode-uri", + "type": "static" + } + ], + "@ui5-language-assistant/logger": [ + { + "source": "@ui5-language-assistant/logger", + "target": "npm:@vscode-logging/types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logger", + "target": "npm:@vscode-logging/logger", + "type": "static" + }, + { + "source": "@ui5-language-assistant/logger", + "target": "@ui5-language-assistant/settings", + "type": "static" + } + ], + "@ui5-language-assistant/fe": [ + { + "source": "@ui5-language-assistant/fe", + "target": "npm:@sap-ux/vocabularies-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:@types/deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/semantic-model-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/test-framework", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:@xml-tools/ast", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:vscode-languageserver-types", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/context", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/logic-utils", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/settings", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/xml-views-completion", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "@ui5-language-assistant/xml-views-validation", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:@xml-tools/content-assist", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:assert-never", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:chevrotain", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:deep-freeze-strict", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:i18next", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@ui5-language-assistant/fe", + "target": "npm:vscode-languageserver-textdocument", + "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:@apidevtools/json-schema-ref-parser": [ + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:@jsdevtools/ono", + "type": "static" + }, + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:call-me-maybe", + "type": "static" + }, + { + "source": "npm:@apidevtools/json-schema-ref-parser", + "target": "npm:js-yaml", + "type": "static" + } + ], + "npm:@azure/abort-controller@1.1.0": [ + { + "source": "npm:@azure/abort-controller@1.1.0", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/abort-controller": [ + { + "source": "npm:@azure/abort-controller", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-auth": [ + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/core-util", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-rest-pipeline": [ + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/abort-controller@1.1.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-util", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:http-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@azure/core-tracing": [ + { + "source": "npm:@azure/core-tracing", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-util": [ + { + "source": "npm:@azure/core-util", + "target": "npm:@azure/abort-controller@1.1.0", + "type": "static" + }, + { + "source": "npm:@azure/core-util", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/logger": [ + { + "source": "npm:@azure/logger", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/opentelemetry-instrumentation-azure-sdk": [ + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "target": "npm:@opentelemetry/instrumentation", + "type": "static" + }, + { + "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "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:picocolors", + "type": "static" + } + ], + "npm:@babel/code-frame@7.25.7": [ + { + "source": "npm:@babel/code-frame@7.25.7", + "target": "npm:@babel/highlight@7.25.7", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.25.7", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:@babel/core": [ + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame@7.25.7", + "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-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@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-module-imports": [ + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "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-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-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/traverse", + "type": "static" + } + ], + "npm:@babel/helper-simple-access": [ + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "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/types", + "type": "static" + } + ], + "npm:@babel/highlight": [ + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier@7.24.7", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:@babel/highlight@7.25.7": [ + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.25.7", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:@babel/parser": [ + { + "source": "npm:@babel/parser", + "target": "npm:@babel/types", + "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-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-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/runtime": [ + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@babel/template": [ + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame@7.25.7", + "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@7.25.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/template", + "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@11.12.0", + "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:@changesets/apply-release-plan": [ + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/config", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/get-version-range-type", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/git", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:lodash.startcase", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:outdent", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@changesets/apply-release-plan", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@changesets/assemble-release-plan": [ + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@changesets/get-dependents-graph", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/assemble-release-plan", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@changesets/changelog-git": [ + { + "source": "npm:@changesets/changelog-git", + "target": "npm:@changesets/types", + "type": "static" + } + ], + "npm:@changesets/cli": [ + { + "source": "npm:@changesets/cli", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/apply-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/assemble-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/changelog-git", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/config", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/get-dependents-graph", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/get-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/git", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/logger", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/pre", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/read", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@changesets/write", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@types/is-ci", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:@types/semver@6.2.7", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:human-id", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:outdent", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:preferred-pm", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:spawndamnit", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:term-size", + "type": "static" + }, + { + "source": "npm:@changesets/cli", + "target": "npm:tty-table", + "type": "static" + } + ], + "npm:@changesets/config": [ + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/get-dependents-graph", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/logger", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/config", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:@changesets/errors": [ + { + "source": "npm:@changesets/errors", + "target": "npm:extendable-error", + "type": "static" + } + ], + "npm:@changesets/get-dependents-graph": [ + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/get-dependents-graph", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@changesets/get-release-plan": [ + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/assemble-release-plan", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/config", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/pre", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/read", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/get-release-plan", + "target": "npm:@manypkg/get-packages", + "type": "static" + } + ], + "npm:@changesets/git": [ + { + "source": "npm:@changesets/git", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:is-subdir", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@changesets/git", + "target": "npm:spawndamnit", + "type": "static" + } + ], + "npm:@changesets/logger": [ + { + "source": "npm:@changesets/logger", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:@changesets/parse": [ + { + "source": "npm:@changesets/parse", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/parse", + "target": "npm:js-yaml@3.14.1", + "type": "static" + } + ], + "npm:@changesets/pre": [ + { + "source": "npm:@changesets/pre", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@changesets/errors", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:@manypkg/get-packages", + "type": "static" + }, + { + "source": "npm:@changesets/pre", + "target": "npm:fs-extra@7.0.1", + "type": "static" + } + ], + "npm:@changesets/read": [ + { + "source": "npm:@changesets/read", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/git", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/logger", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/parse", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/read", + "target": "npm:p-filter", + "type": "static" + } + ], + "npm:@changesets/write": [ + { + "source": "npm:@changesets/write", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:@changesets/types", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:human-id", + "type": "static" + }, + { + "source": "npm:@changesets/write", + "target": "npm:prettier", + "type": "static" + } + ], + "npm:@chevrotain/cst-dts-gen": [ + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@chevrotain/gast": [ + { + "source": "npm:@chevrotain/gast", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/gast", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@commitlint/cli": [ + { + "source": "npm:@commitlint/cli", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/format", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/lint", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/load", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:@commitlint/read", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:resolve-global", + "type": "static" + }, + { + "source": "npm:@commitlint/cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:@commitlint/config-conventional": [ + { + "source": "npm:@commitlint/config-conventional", + "target": "npm:conventional-changelog-conventionalcommits", + "type": "static" + } + ], + "npm:@commitlint/config-validator": [ + { + "source": "npm:@commitlint/config-validator", + "target": "npm:@commitlint/types@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/config-validator", + "target": "npm:ajv@8.17.1", + "type": "static" + } + ], + "npm:@commitlint/ensure": [ + { + "source": "npm:@commitlint/ensure", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/ensure", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@commitlint/format": [ + { + "source": "npm:@commitlint/format", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/format", + "target": "npm:chalk@4.1.2", + "type": "static" + } + ], + "npm:@commitlint/is-ignored": [ + { + "source": "npm:@commitlint/is-ignored", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/is-ignored", + "target": "npm:semver@7.3.2", + "type": "static" + } + ], + "npm:@commitlint/lint": [ + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/is-ignored", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/parse", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/rules", + "type": "static" + }, + { + "source": "npm:@commitlint/lint", + "target": "npm:@commitlint/types", + "type": "static" + } + ], + "npm:@commitlint/load": [ + { + "source": "npm:@commitlint/load", + "target": "npm:@commitlint/execute-rule", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:@commitlint/resolve-extends", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:@commitlint/types", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/load", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@commitlint/load@19.5.0": [ + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/config-validator", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/execute-rule@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/resolve-extends@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:@commitlint/types@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:cosmiconfig@9.0.0", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:cosmiconfig-typescript-loader", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:@commitlint/load@19.5.0", + "target": "npm:lodash.uniq", + "type": "static" + } + ], + "npm:@commitlint/parse": [ + { + "source": "npm:@commitlint/parse", + "target": "npm:conventional-changelog-angular@5.0.13", + "type": "static" + }, + { + "source": "npm:@commitlint/parse", + "target": "npm:conventional-commits-parser@3.2.4", + "type": "static" + } + ], + "npm:@commitlint/read": [ + { + "source": "npm:@commitlint/read", + "target": "npm:@commitlint/top-level", + "type": "static" + }, + { + "source": "npm:@commitlint/read", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@commitlint/read", + "target": "npm:git-raw-commits", + "type": "static" + } + ], + "npm:@commitlint/resolve-extends": [ + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends", + "target": "npm:resolve-global", + "type": "static" + } + ], + "npm:@commitlint/resolve-extends@19.5.0": [ + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:@commitlint/config-validator", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:@commitlint/types@19.5.0", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:global-directory", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:import-meta-resolve", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:lodash.mergewith", + "type": "static" + }, + { + "source": "npm:@commitlint/resolve-extends@19.5.0", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@commitlint/rules": [ + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/ensure", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/message", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/to-lines", + "type": "static" + }, + { + "source": "npm:@commitlint/rules", + "target": "npm:@commitlint/types", + "type": "static" + } + ], + "npm:@commitlint/top-level": [ + { + "source": "npm:@commitlint/top-level", + "target": "npm:find-up@5.0.0", + "type": "static" + } + ], + "npm:@commitlint/types@19.5.0": [ + { + "source": "npm:@commitlint/types@19.5.0", + "target": "npm:@types/conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@commitlint/types@19.5.0", + "target": "npm:chalk@5.3.0", + "type": "static" + } + ], + "npm:@dabh/diagnostics": [ + { + "source": "npm:@dabh/diagnostics", + "target": "npm:colorspace", + "type": "static" + }, + { + "source": "npm:@dabh/diagnostics", + "target": "npm:enabled", + "type": "static" + }, + { + "source": "npm:@dabh/diagnostics", + "target": "npm:kuler", + "type": "static" + } + ], + "npm:@emnapi/core": [ + { + "source": "npm:@emnapi/core", + "target": "npm:@emnapi/wasi-threads", + "type": "static" + }, + { + "source": "npm:@emnapi/core", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@emnapi/runtime": [ + { + "source": "npm:@emnapi/runtime", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@emnapi/wasi-threads": [ + { + "source": "npm:@emnapi/wasi-threads", + "target": "npm:tslib", + "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", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:@formatjs/cli": [ + { + "source": "npm:@formatjs/cli", + "target": "npm:@formatjs/ts-transformer", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/loud-rejection", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@types/node@14.18.63", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:@vue/compiler-sfc", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:intl-messageformat-parser", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:loud-rejection", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@formatjs/cli", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@formatjs/ecma402-abstract": [ + { + "source": "npm:@formatjs/ecma402-abstract", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@formatjs/ts-transformer": [ + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:intl-messageformat-parser", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:ts-jest", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@formatjs/ts-transformer", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@isaacs/cliui": [ + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "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:@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@4.1.2", + "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@4.1.2", + "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@29.7.0", + "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@29.7.0", + "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-utils": [ + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + } + ], + "npm:@jest/expect": [ + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot@29.7.0", + "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@4.1.2", + "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@6.0.3", + "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@4.1.2", + "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@4.0.2", + "type": "static" + } + ], + "npm:@jest/types@25.5.0": [ + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-reports@1.1.2", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/yargs@15.0.19", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:chalk@3.0.0", + "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@4.1.2", + "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:@kwsites/file-exists": [ + { + "source": "npm:@kwsites/file-exists", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@lerna/child-process": [ + { + "source": "npm:@lerna/child-process", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:strong-log-transformer", + "type": "static" + } + ], + "npm:@lerna/create": [ + { + "source": "npm:@lerna/create", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:nx@16.10.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:uuid@9.0.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:@manypkg/find-root": [ + { + "source": "npm:@manypkg/find-root", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:@types/node@12.20.55", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:fs-extra@8.1.0", + "type": "static" + } + ], + "npm:@manypkg/get-packages": [ + { + "source": "npm:@manypkg/get-packages", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:@changesets/types@4.1.0", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:@manypkg/find-root", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@manypkg/get-packages", + "target": "npm:read-yaml-file", + "type": "static" + } + ], + "npm:@napi-rs/wasm-runtime": [ + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/core", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@tybys/wasm-util", + "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/fs@2.1.2": [ + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:@gar/promisify", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:semver", + "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@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", + "type": "static" + } + ], + "npm:@npmcli/installed-package-contents": [ + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/move-file": [ + { + "source": "npm:@npmcli/move-file", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:@npmcli/promise-spawn": [ + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which", + "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", + "type": "static" + } + ], + "npm:@nrwl/devkit": [ + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "npm:@nrwl/tao@16.10.0": [ + { + "source": "npm:@nrwl/tao@16.10.0", + "target": "npm:nx@16.10.0", + "type": "static" + }, + { + "source": "npm:@nrwl/tao@16.10.0", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nrwl/tao": [ + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/devkit": [ + { + "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@2.3.6", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:nx@16.10.0", + "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:@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:is-plain-object@5.0.0", + "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/tsconfig", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + } + ], + "npm:@octokit/plugin-request-log": [ + { + "source": "npm:@octokit/plugin-request-log", + "target": "npm:@octokit/core", + "type": "static" + } + ], + "npm:@octokit/plugin-rest-endpoint-methods": [ + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types@10.0.0", + "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/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:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/rest": [ + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + } + ], + "npm:@octokit/types@10.0.0": [ + { + "source": "npm:@octokit/types@10.0.0", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@octokit/types": [ + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@opentelemetry/api-logs": [ + { + "source": "npm:@opentelemetry/api-logs", + "target": "npm:@opentelemetry/api", + "type": "static" + } + ], + "npm:@opentelemetry/core": [ + { + "source": "npm:@opentelemetry/core", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/core", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + } + ], + "npm:@opentelemetry/instrumentation": [ + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:@opentelemetry/api-logs", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:@types/shimmer", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:import-in-the-middle", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:require-in-the-middle", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@opentelemetry/instrumentation", + "target": "npm:shimmer", + "type": "static" + } + ], + "npm:@opentelemetry/resources": [ + { + "source": "npm:@opentelemetry/resources", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/resources", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:@opentelemetry/resources", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + } + ], + "npm:@opentelemetry/sdk-trace-base": [ + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/resources", + "type": "static" + }, + { + "source": "npm:@opentelemetry/sdk-trace-base", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + } + ], + "npm:@parcel/watcher": [ + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-gyp-build", + "type": "static" + } + ], + "npm:@prettier/plugin-xml": [ + { + "source": "npm:@prettier/plugin-xml", + "target": "npm:@xml-tools/parser@1.0.11", + "type": "static" + }, + { + "source": "npm:@prettier/plugin-xml", + "target": "npm:prettier", + "type": "static" + } + ], + "npm:@sap-ux/edmx-parser": [ + { + "source": "npm:@sap-ux/edmx-parser", + "target": "npm:xml-js", + "type": "static" + } + ], + "npm:@sap-ux/i18n": [ + { + "source": "npm:@sap-ux/i18n", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@sap-ux/i18n", + "target": "npm:vscode-languageserver-textdocument@1.0.7", + "type": "static" + }, + { + "source": "npm:@sap-ux/i18n", + "target": "npm:vscode-languageserver-types", + "type": "static" + } + ], + "npm:@sap-ux/project-access": [ + { + "source": "npm:@sap-ux/project-access", + "target": "npm:@sap-ux/i18n", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:@sap-ux/ui5-config", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:fast-xml-parser", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:findit2", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:mem-fs", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:mem-fs-editor", + "type": "static" + }, + { + "source": "npm:@sap-ux/project-access", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@sap-ux/ui5-config": [ + { + "source": "npm:@sap-ux/ui5-config", + "target": "npm:@sap-ux/yaml", + "type": "static" + }, + { + "source": "npm:@sap-ux/ui5-config", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@sap-ux/ui5-config", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@sap-ux/yaml": [ + { + "source": "npm:@sap-ux/yaml", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@sap-ux/yaml", + "target": "npm:yaml@2.2.2", + "type": "static" + } + ], + "npm:@sap/bas-sdk": [ + { + "source": "npm:@sap/bas-sdk", + "target": "npm:axios@1.7.4", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:url-join", + "type": "static" + }, + { + "source": "npm:@sap/bas-sdk", + "target": "npm:ws", + "type": "static" + } + ], + "npm:@sap/swa-for-sapbas-vsx@1.1.9": [ + { + "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "target": "npm:esm", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "target": "npm:lodash@4.17.20", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", + "target": "npm:matomo-tracker", + "type": "static" + } + ], + "npm:@sap/swa-for-sapbas-vsx": [ + { + "source": "npm:@sap/swa-for-sapbas-vsx", + "target": "npm:@sap/bas-sdk", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx", + "target": "npm:applicationinsights", + "type": "static" + }, + { + "source": "npm:@sap/swa-for-sapbas-vsx", + "target": "npm:lodash", + "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:@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:@tybys/wasm-util": [ + { + "source": "npm:@tybys/wasm-util", + "target": "npm:tslib", + "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/conventional-commits-parser": [ + { + "source": "npm:@types/conventional-commits-parser", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/fs-extra": [ + { + "source": "npm:@types/fs-extra", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/glob": [ + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/graceful-fs": [ + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/is-ci": [ + { + "source": "npm:@types/is-ci", + "target": "npm:ci-info", + "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@1.1.2": [ + { + "source": "npm:@types/istanbul-reports@1.1.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports@1.1.2", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/istanbul-reports": [ + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/jest-specific-snapshot": [ + { + "source": "npm:@types/jest-specific-snapshot", + "target": "npm:@types/jest", + "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/klaw-sync": [ + { + "source": "npm:@types/klaw-sync", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/loud-rejection": [ + { + "source": "npm:@types/loud-rejection", + "target": "npm:loud-rejection", + "type": "static" + } + ], + "npm:@types/node-fetch": [ + { + "source": "npm:@types/node-fetch", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:form-data", + "type": "static" + } + ], + "npm:@types/rimraf": [ + { + "source": "npm:@types/rimraf", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:@types/rimraf", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/sinon-chai": [ + { + "source": "npm:@types/sinon-chai", + "target": "npm:@types/chai", + "type": "static" + }, + { + "source": "npm:@types/sinon-chai", + "target": "npm:@types/sinon", + "type": "static" + } + ], + "npm:@types/sinon": [ + { + "source": "npm:@types/sinon", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + } + ], + "npm:@types/yargs@15.0.19": [ + { + "source": "npm:@types/yargs@15.0.19", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yargs": [ + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin": [ + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:regexpp", + "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/eslint-plugin", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/experimental-utils": [ + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils@3.0.0", + "type": "static" + } + ], + "npm:@typescript-eslint/parser": [ + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager@4.14.0", + "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/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager@4.14.0": [ + { + "source": "npm:@typescript-eslint/scope-manager@4.14.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@4.14.0", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager": [ + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys@4.33.0", + "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:lodash", + "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/typescript-estree", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree@4.33.0": [ + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:@typescript-eslint/visitor-keys@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@4.33.0", + "target": "npm:typescript", + "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:@typescript-eslint/visitor-keys@4.33.0": [ + { + "source": "npm:@typescript-eslint/visitor-keys@4.33.0", + "target": "npm:@typescript-eslint/types@4.33.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@4.33.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@vscode-logging/logger": [ + { + "source": "npm:@vscode-logging/logger", + "target": "npm:@vscode-logging/types", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:fast-safe-stringify", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:lodash@4.17.20", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:stacktrace-js", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:streamroller", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:winston", + "type": "static" + }, + { + "source": "npm:@vscode-logging/logger", + "target": "npm:winston-transport", + "type": "static" + } + ], + "npm:@vue/compiler-core": [ + { + "source": "npm:@vue/compiler-core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:@vue/compiler-dom": [ + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/shared", + "type": "static" + } + ], + "npm:@vue/compiler-sfc": [ + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-ssr", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:@vue/compiler-ssr": [ + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/shared", + "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:@xml-tools/ast-position": [ + { + "source": "npm:@xml-tools/ast-position", + "target": "npm:@xml-tools/ast", + "type": "static" + } + ], + "npm:@xml-tools/ast": [ + { + "source": "npm:@xml-tools/ast", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "npm:@xml-tools/ast", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "npm:@xml-tools/ast", + "target": "npm:lodash@4.17.15", + "type": "static" + } + ], + "npm:@xml-tools/common": [ + { + "source": "npm:@xml-tools/common", + "target": "npm:lodash@4.17.15", + "type": "static" + } + ], + "npm:@xml-tools/content-assist": [ + { + "source": "npm:@xml-tools/content-assist", + "target": "npm:@xml-tools/common", + "type": "static" + }, + { + "source": "npm:@xml-tools/content-assist", + "target": "npm:@xml-tools/parser", + "type": "static" + }, + { + "source": "npm:@xml-tools/content-assist", + "target": "npm:lodash@4.17.15", + "type": "static" + } + ], + "npm:@xml-tools/parser@1.0.11": [ + { + "source": "npm:@xml-tools/parser@1.0.11", + "target": "npm:chevrotain@7.1.1", + "type": "static" + } + ], + "npm:@xml-tools/parser": [ + { + "source": "npm:@xml-tools/parser", + "target": "npm:chevrotain", + "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@0.0.6": [ + { + "source": "npm:@zkochan/js-yaml@0.0.6", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:@zkochan/js-yaml": [ + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:JSONStream": [ + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + } + ], + "npm:acorn-globals": [ + { + "source": "npm:acorn-globals", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + } + ], + "npm:acorn-import-attributes": [ + { + "source": "npm:acorn-import-attributes", + "target": "npm:acorn@8.12.1", + "type": "static" + } + ], + "npm:acorn-jsx": [ + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:acorn-walk": [ + { + "source": "npm:acorn-walk", + "target": "npm:acorn@8.12.1", + "type": "static" + } + ], + "npm:agent-base": [ + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + } + ], + "npm:agentkeepalive": [ + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "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-keywords": [ + { + "source": "npm:ajv-keywords", + "target": "npm:ajv@6.12.6", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "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", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv@8.17.1": [ + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:require-from-string", + "type": "static" + } + ], + "npm:ansi-escapes": [ + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + } + ], + "npm:ansi-styles": [ + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:ansi-styles@4.3.0": [ + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + } + ], + "npm:anymatch": [ + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:append-transform": [ + { + "source": "npm:append-transform", + "target": "npm:default-require-extensions", + "type": "static" + } + ], + "npm:applicationinsights": [ + { + "source": "npm:applicationinsights", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/core-rest-pipeline", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/core-util", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@azure/opentelemetry-instrumentation-azure-sdk", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@microsoft/applicationinsights-web-snippet", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/core", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/sdk-trace-base", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:@opentelemetry/semantic-conventions", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:cls-hooked", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:continuation-local-storage", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:diagnostic-channel", + "type": "static" + }, + { + "source": "npm:applicationinsights", + "target": "npm:diagnostic-channel-publishers", + "type": "static" + } + ], + "npm:are-we-there-yet": [ + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:argparse@1.0.10": [ + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "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:array-includes": [ + { + "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:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + } + ], + "npm:array.prototype.findlastindex": [ + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.flat": [ + { + "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" + } + ], + "npm:array.prototype.flatmap": [ + { + "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" + } + ], + "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:es-errors", + "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:async-hook-jl": [ + { + "source": "npm:async-hook-jl", + "target": "npm:stack-chain", + "type": "static" + } + ], + "npm:async-listener": [ + { + "source": "npm:async-listener", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:async-listener", + "target": "npm:shimmer", + "type": "static" + } + ], + "npm:available-typed-arrays": [ + { + "source": "npm:available-typed-arrays", + "target": "npm:possible-typed-array-names", + "type": "static" + } + ], + "npm:axios": [ + { + "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", + "type": "static" + } + ], + "npm:axios@1.7.4": [ + { + "source": "npm:axios@1.7.4", + "target": "npm:follow-redirects@1.15.9", + "type": "static" + }, + { + "source": "npm:axios@1.7.4", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.7.4", + "target": "npm:proxy-from-env", + "type": "static" + } + ], + "npm:axios@1.7.7": [ + { + "source": "npm:axios@1.7.7", + "target": "npm:follow-redirects@1.15.9", + "type": "static" + }, + { + "source": "npm:axios@1.7.7", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.7.7", + "target": "npm:proxy-from-env", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "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: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-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-class-static-block", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-attributes", + "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-private-property-in-object", + "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:bcrypt-pbkdf": [ + { + "source": "npm:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:better-path-resolve": [ + { + "source": "npm:better-path-resolve", + "target": "npm:is-windows", + "type": "static" + } + ], + "npm:binary": [ + { + "source": "npm:binary", + "target": "npm:buffers", + "type": "static" + }, + { + "source": "npm:binary", + "target": "npm:chainsaw", + "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", + "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:brace-expansion@2.0.1": [ + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:breakword": [ + { + "source": "npm:breakword", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:browser-resolve": [ + { + "source": "npm:browser-resolve", + "target": "npm:resolve@1.1.7", + "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@16.1.3": [ + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/fs@2.1.2", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:unique-filename@2.0.1", + "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.4.5", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass@7.1.2", + "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@10.0.6", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:caching-transform": [ + { + "source": "npm:caching-transform", + "target": "npm:hasha", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:package-hash", + "type": "static" + }, + { + "source": "npm:caching-transform", + "target": "npm:write-file-atomic@3.0.3", + "type": "static" + } + ], + "npm:call-bind": [ + { + "source": "npm:call-bind", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:es-errors", + "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" + } + ], + "npm:camelcase-keys": [ + { + "source": "npm:camelcase-keys", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:quick-lru", + "type": "static" + } + ], + "npm:chai": [ + { + "source": "npm:chai", + "target": "npm:assertion-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:check-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:deep-eql", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:get-func-name", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:pathval", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:chainsaw": [ + { + "source": "npm:chainsaw", + "target": "npm:traverse", + "type": "static" + } + ], + "npm:chalk": [ + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chalk@3.0.0": [ + { + "source": "npm:chalk@3.0.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:chalk@4.1.0": [ + { + "source": "npm:chalk@4.1.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.0", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:chalk@4.1.2": [ + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:check-error": [ + { + "source": "npm:check-error", + "target": "npm:get-func-name", + "type": "static" + } + ], + "npm:chevrotain@10.4.2": [ + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/cst-dts-gen", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:@chevrotain/utils", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:chevrotain@10.4.2", + "target": "npm:regexp-to-ast", + "type": "static" + } + ], + "npm:chevrotain": [ + { + "source": "npm:chevrotain", + "target": "npm:regexp-to-ast", + "type": "static" + } + ], + "npm:chevrotain@7.1.1": [ + { + "source": "npm:chevrotain@7.1.1", + "target": "npm:regexp-to-ast", + "type": "static" + } + ], + "npm:cli-color": [ + { + "source": "npm:cli-color", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:memoizee", + "type": "static" + }, + { + "source": "npm:cli-color", + "target": "npm:timers-ext", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "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:cliui@6.0.0": [ + { + "source": "npm:cliui@6.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:wrap-ansi@6.2.0", + "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", + "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", + "type": "static" + } + ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], + "npm:cloneable-readable": [ + { + "source": "npm:cloneable-readable", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:readable-stream@2.3.8", + "type": "static" + } + ], + "npm:cls-hooked": [ + { + "source": "npm:cls-hooked", + "target": "npm:async-hook-jl", + "type": "static" + }, + { + "source": "npm:cls-hooked", + "target": "npm:emitter-listener", + "type": "static" + }, + { + "source": "npm:cls-hooked", + "target": "npm:semver@5.7.2", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:color-convert@2.0.1": [ + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + } + ], + "npm:color-string": [ + { + "source": "npm:color-string", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + } + ], + "npm:color": [ + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + } + ], + "npm:colorspace": [ + { + "source": "npm:colorspace", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:colorspace", + "target": "npm:text-hex", + "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:comment-json": [ + { + "source": "npm:comment-json", + "target": "npm:array-timsort", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:has-own-prop", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:commitizen": [ + { + "source": "npm:commitizen", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:cz-conventional-changelog", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:find-node-modules", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:find-root", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:is-utf8", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:minimist@1.2.7", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:commitizen", + "target": "npm:strip-json-comments", + "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: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:continuation-local-storage": [ + { + "source": "npm:continuation-local-storage", + "target": "npm:async-listener", + "type": "static" + }, + { + "source": "npm:continuation-local-storage", + "target": "npm:emitter-listener", + "type": "static" + } + ], + "npm:conventional-changelog-angular@5.0.13": [ + { + "source": "npm:conventional-changelog-angular@5.0.13", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular@5.0.13", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-angular": [ + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-atom": [ + { + "source": "npm:conventional-changelog-atom", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-cli": [ + { + "source": "npm:conventional-changelog-cli", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:conventional-changelog", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-cli", + "target": "npm:tempfile", + "type": "static" + } + ], + "npm:conventional-changelog-codemirror": [ + { + "source": "npm:conventional-changelog-codemirror", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-conventionalcommits": [ + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-core@4.2.4": [ + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:conventional-changelog-writer@5.0.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:conventional-commits-parser@3.2.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:git-semver-tags@4.1.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:q", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core@4.2.4", + "target": "npm:through2", + "type": "static" + } + ], + "npm:conventional-changelog-core": [ + { + "source": "npm:conventional-changelog-core", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-raw-commits@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg-up", + "type": "static" + } + ], + "npm:conventional-changelog-ember": [ + { + "source": "npm:conventional-changelog-ember", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-eslint": [ + { + "source": "npm:conventional-changelog-eslint", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-express": [ + { + "source": "npm:conventional-changelog-express", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-jquery": [ + { + "source": "npm:conventional-changelog-jquery", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-jshint": [ + { + "source": "npm:conventional-changelog-jshint", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-jshint", + "target": "npm:q", + "type": "static" + } + ], + "npm:conventional-changelog-writer@5.0.1": [ + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:conventional-commits-filter@2.0.7", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer@5.0.1", + "target": "npm:through2", + "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:dateformat", + "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@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split", + "type": "static" + } + ], + "npm:conventional-changelog": [ + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-angular@5.0.13", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-atom", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-codemirror", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-conventionalcommits", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-core@4.2.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-ember", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-eslint", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-express", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-jquery", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-jshint", + "type": "static" + }, + { + "source": "npm:conventional-changelog", + "target": "npm:conventional-changelog-preset-loader", + "type": "static" + } + ], + "npm:conventional-commits-filter@2.0.7": [ + { + "source": "npm:conventional-commits-filter@2.0.7", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter@2.0.7", + "target": "npm:modify-values", + "type": "static" + } + ], + "npm:conventional-commits-filter": [ + { + "source": "npm:conventional-commits-filter", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:modify-values", + "type": "static" + } + ], + "npm:conventional-commits-parser@3.2.4": [ + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser@3.2.4", + "target": "npm:through2", + "type": "static" + } + ], + "npm:conventional-commits-parser": [ + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + } + ], + "npm:conventional-recommended-bump": [ + { + "source": "npm:conventional-recommended-bump", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-changelog-preset-loader@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-raw-commits@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:meow@8.1.2", + "type": "static" + } + ], + "npm:cosmiconfig-typescript-loader": [ + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:cosmiconfig@9.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader", + "target": "npm:typescript", + "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:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "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:typescript", + "type": "static" + } + ], + "npm:cosmiconfig@9.0.0": [ + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@9.0.0", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:coveralls": [ + { + "source": "npm:coveralls", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:lcov-parse", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:log-driver", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:coveralls", + "target": "npm:request", + "type": "static" + } + ], + "npm:create-jest": [ + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk@4.1.2", + "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@29.7.0", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + } + ], + "npm:cross-env": [ + { + "source": "npm:cross-env", + "target": "npm:cross-spawn", + "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", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which@1.3.1", + "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", + "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", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command@2.0.0", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:cssstyle": [ + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + } + ], + "npm:csv": [ + { + "source": "npm:csv", + "target": "npm:csv-generate", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:csv-parse", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:csv-stringify", + "type": "static" + }, + { + "source": "npm:csv", + "target": "npm:stream-transform", + "type": "static" + } + ], + "npm:currently-unhandled": [ + { + "source": "npm:currently-unhandled", + "target": "npm:array-find-index", + "type": "static" + } + ], + "npm:cz-conventional-changelog": [ + { + "source": "npm:cz-conventional-changelog", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:commitizen", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:conventional-commit-types", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:lodash.map", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:longest", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:word-wrap", + "type": "static" + }, + { + "source": "npm:cz-conventional-changelog", + "target": "npm:@commitlint/load@19.5.0", + "type": "static" + } + ], + "npm:d": [ + { + "source": "npm:d", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:type", + "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@11.0.0", + "type": "static" + } + ], + "npm:data-view-buffer": [ + { + "source": "npm:data-view-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:is-data-view", + "type": "static" + } + ], + "npm:data-view-byte-length": [ + { + "source": "npm:data-view-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:is-data-view", + "type": "static" + } + ], + "npm:data-view-byte-offset": [ + { + "source": "npm:data-view-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:is-data-view", + "type": "static" + } + ], + "npm:debug@3.2.7": [ + { + "source": "npm:debug@3.2.7", + "target": "npm:ms@2.1.3", + "type": "static" + } + ], + "npm:debug@4.3.4": [ + { + "source": "npm:debug@4.3.4", + "target": "npm:ms", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms@2.1.3", + "type": "static" + } + ], + "npm:decamelize-keys": [ + { + "source": "npm:decamelize-keys", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:map-obj@1.0.1", + "type": "static" + } + ], + "npm:deep-eql": [ + { + "source": "npm:deep-eql", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:deep-equal-in-any-order": [ + { + "source": "npm:deep-equal-in-any-order", + "target": "npm:lodash.mapvalues", + "type": "static" + }, + { + "source": "npm:deep-equal-in-any-order", + "target": "npm:sort-any", + "type": "static" + } + ], + "npm:default-require-extensions": [ + { + "source": "npm:default-require-extensions", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone@1.0.4", + "type": "static" + } + ], + "npm:define-data-property": [ + { + "source": "npm:define-data-property", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "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:diagnostic-channel-publishers": [ + { + "source": "npm:diagnostic-channel-publishers", + "target": "npm:diagnostic-channel", + "type": "static" + } + ], + "npm:diagnostic-channel": [ + { + "source": "npm:diagnostic-channel", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:doctrine@2.1.0": [ + { + "source": "npm:doctrine@2.1.0", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:domexception": [ + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:dot-prop": [ + { + "source": "npm:dot-prop", + "target": "npm:is-obj@2.0.0", + "type": "static" + } + ], + "npm:dotenv-expand": [ + { + "source": "npm:dotenv-expand", + "target": "npm:dotenv", + "type": "static" + } + ], + "npm:duplexer2": [ + { + "source": "npm:duplexer2", + "target": "npm:readable-stream@2.3.8", + "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:ejs": [ + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + } + ], + "npm:emitter-listener": [ + { + "source": "npm:emitter-listener", + "target": "npm:shimmer", + "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:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:enquirer@2.3.6": [ + { + "source": "npm:enquirer@2.3.6", + "target": "npm:ansi-colors", + "type": "static" + } + ], + "npm:enquirer": [ + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:error-stack-parser": [ + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "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:data-view-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-object-atoms", + "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-data-view", + "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-define-property": [ + { + "source": "npm:es-define-property", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:es-object-atoms": [ + { + "source": "npm:es-object-atoms", + "target": "npm:es-errors", + "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-shim-unscopables": [ + { + "source": "npm:es-shim-unscopables", + "target": "npm:hasown@2.0.0", + "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:es5-ext": [ + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + } + ], + "npm:es6-iterator": [ + { + "source": "npm:es6-iterator", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es6-symbol", + "type": "static" + } + ], + "npm:es6-symbol": [ + { + "source": "npm:es6-symbol", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:ext", + "type": "static" + } + ], + "npm:es6-weak-map": [ + { + "source": "npm:es6-weak-map", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-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@5.3.0", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:eslint-config-prettier": [ + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "type": "static" + } + ], + "npm:eslint-import-resolver-node": [ + { + "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@2.15.1", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:eslint-import-resolver-typescript": [ + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:eslint-module-utils": [ + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:eslint-import-resolver-typescript", + "type": "static" + } + ], + "npm:eslint-plugin-eslint-comments": [ + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:ignore", + "type": "static" + } + ], + "npm:eslint-plugin-import": [ + { + "source": "npm:eslint-plugin-import", + "target": "npm:@rtsao/scc", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.findlastindex", + "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", + "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:hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module@2.15.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.groupby", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.15.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:eslint-utils": [ + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + } + ], + "npm:eslint-utils@3.0.0": [ + { + "source": "npm:eslint-utils@3.0.0", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-utils@3.0.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:eslint": [ + { + "source": "npm:eslint", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk@4.1.2", + "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:enquirer", + "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:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore@4.0.6", + "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@3.14.1", + "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", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:semver", + "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:table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:v8-compile-cache", + "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@1.3.0", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse@5.3.0", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse@5.3.0", + "type": "static" + } + ], + "npm:event-emitter": [ + { + "source": "npm:event-emitter", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:event-emitter", + "target": "npm:es5-ext", + "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", + "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" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals@2.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream@2.0.1", + "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:execa@5.1.1": [ + { + "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@2.1.0", + "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" + } + ], + "npm:expand-tilde": [ + { + "source": "npm:expand-tilde", + "target": "npm:homedir-polyfill", + "type": "static" + } + ], + "npm:expect@25.5.0": [ + { + "source": "npm:expect@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-matcher-utils@25.5.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-message-util@25.5.0", + "type": "static" + }, + { + "source": "npm:expect@25.5.0", + "target": "npm:jest-regex-util@25.2.6", + "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:ext": [ + { + "source": "npm:ext", + "target": "npm:type@2.7.2", + "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: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:fast-xml-parser": [ + { + "source": "npm:fast-xml-parser", + "target": "npm:strnum", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:fb-watchman": [ + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + } + ], + "npm:figures": [ + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + } + ], + "npm:file-entry-cache": [ + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + } + ], + "npm:filelist": [ + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + } + ], + "npm:fill-keys": [ + { + "source": "npm:fill-keys", + "target": "npm:is-object", + "type": "static" + }, + { + "source": "npm:fill-keys", + "target": "npm:merge-descriptors", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "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-node-modules": [ + { + "source": "npm:find-node-modules", + "target": "npm:findup-sync", + "type": "static" + }, + { + "source": "npm:find-node-modules", + "target": "npm:merge", + "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:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "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:find-yarn-workspace-root2": [ + { + "source": "npm:find-yarn-workspace-root2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root2", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:findup-sync": [ + { + "source": "npm:findup-sync", + "target": "npm:detect-file", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:resolve-dir", + "type": "static" + } + ], + "npm:first-chunk-stream": [ + { + "source": "npm:first-chunk-stream", + "target": "npm:readable-stream@2.3.8", + "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", + "type": "static" + } + ], + "npm:foreground-child@3.3.0": [ + { + "source": "npm:foreground-child@3.3.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child@3.3.0", + "target": "npm:signal-exit@4.1.0", + "type": "static" + } + ], + "npm:form-data@2.3.3": [ + { + "source": "npm:form-data@2.3.3", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:mime-types", + "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: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:front-matter": [ + { + "source": "npm:front-matter", + "target": "npm:js-yaml@3.14.1", + "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-extra@11.2.0": [ + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@7.0.1": [ + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + } + ], + "npm:fs-extra@8.1.0": [ + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:universalify@0.1.2", + "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:fs-minipass@2.1.0": [ + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass@7.1.2", + "type": "static" + } + ], + "npm:fstream": [ + { + "source": "npm:fstream", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:mkdirp@0.5.6", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:rimraf@2.7.1", + "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:gauge": [ + { + "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" + } + ], + "npm:get-intrinsic": [ + { + "source": "npm:get-intrinsic", + "target": "npm:es-errors", + "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@2.0.0", + "type": "static" + } + ], + "npm:get-pkg-repo": [ + { + "source": "npm:get-pkg-repo", + "target": "npm:@hutson/parse-repository-url", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:hosted-git-info@4.1.0", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:get-stream@5.2.0": [ + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:get-tsconfig": [ + { + "source": "npm:get-tsconfig", + "target": "npm:resolve-pkg-maps", + "type": "static" + } + ], + "npm:getpass": [ + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:git-raw-commits": [ + { + "source": "npm:git-raw-commits", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:through2", + "type": "static" + } + ], + "npm:git-raw-commits@3.0.0": [ + { + "source": "npm:git-raw-commits@3.0.0", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits@3.0.0", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-raw-commits@3.0.0", + "target": "npm:split2", + "type": "static" + } + ], + "npm:git-remote-origin-url": [ + { + "source": "npm:git-remote-origin-url", + "target": "npm:gitconfiglocal", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:pify@2.3.0", + "type": "static" + } + ], + "npm:git-semver-tags@4.1.1": [ + { + "source": "npm:git-semver-tags@4.1.1", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-semver-tags@4.1.1", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:git-semver-tags": [ + { + "source": "npm:git-semver-tags", + "target": "npm:meow@8.1.2", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:semver", + "type": "static" + } + ], + "npm:git-up": [ + { + "source": "npm:git-up", + "target": "npm:is-ssh", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:parse-url", + "type": "static" + } + ], + "npm:git-url-parse": [ + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + } + ], + "npm:gitconfiglocal": [ + { + "source": "npm:gitconfiglocal", + "target": "npm:ini", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob-promise": [ + { + "source": "npm:glob-promise", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:glob-promise", + "target": "npm:glob", + "type": "static" + } + ], + "npm:glob@10.4.5": [ + { + "source": "npm:glob@10.4.5", + "target": "npm:foreground-child@3.3.0", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:minimatch@9.0.5", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:minipass@7.1.2", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:package-json-from-dist", + "type": "static" + }, + { + "source": "npm:glob@10.4.5", + "target": "npm:path-scurry", + "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: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", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@7.2.3": [ + { + "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", + "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" + } + ], + "npm:glob@8.1.0": [ + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + } + ], + "npm:glob@9.3.5": [ + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.4", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.8", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:global-directory": [ + { + "source": "npm:global-directory", + "target": "npm:ini@4.1.1", + "type": "static" + } + ], + "npm:global-dirs": [ + { + "source": "npm:global-dirs", + "target": "npm:ini", + "type": "static" + } + ], + "npm:global-modules": [ + { + "source": "npm:global-modules", + "target": "npm:global-prefix", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:resolve-dir", + "type": "static" + } + ], + "npm:global-prefix": [ + { + "source": "npm:global-prefix", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:globals": [ + { + "source": "npm:globals", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:gopd", + "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: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", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + } + ], + "npm:har-validator": [ + { + "source": "npm:har-validator", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:har-schema", + "type": "static" + } + ], + "npm:has-property-descriptors": [ + { + "source": "npm:has-property-descriptors", + "target": "npm:es-define-property", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:hasha": [ + { + "source": "npm:hasha", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:hasha", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:hasown@2.0.0": [ + { + "source": "npm:hasown@2.0.0", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:hasown": [ + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:homedir-polyfill": [ + { + "source": "npm:homedir-polyfill", + "target": "npm:parse-passwd", + "type": "static" + } + ], + "npm:hosted-git-info": [ + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hosted-git-info@4.1.0": [ + { + "source": "npm:hosted-git-info@4.1.0", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hosted-git-info@6.1.1": [ + { + "source": "npm:hosted-git-info@6.1.1", + "target": "npm:lru-cache@7.18.3", + "type": "static" + } + ], + "npm:html-encoding-sniffer": [ + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "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", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-agent@5.0.0": [ + { + "source": "npm:http-proxy-agent@5.0.0", + "target": "npm:@tootallnate/once@2.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@5.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@5.0.0", + "target": "npm:debug", + "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:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug@4.3.4", + "type": "static" + } + ], + "npm:humanize-ms": [ + { + "source": "npm:humanize-ms", + "target": "npm:ms@2.1.3", + "type": "static" + } + ], + "npm:i18next": [ + { + "source": "npm:i18next", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:iconv-lite@0.6.3": [ + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:ignore-walk": [ + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@5.1.6", + "type": "static" + } + ], + "npm:ignore-walk@6.0.5": [ + { + "source": "npm:ignore-walk@6.0.5", + "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-in-the-middle": [ + { + "source": "npm:import-in-the-middle", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:import-in-the-middle", + "target": "npm:acorn-import-attributes", + "type": "static" + }, + { + "source": "npm:import-in-the-middle", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:import-in-the-middle", + "target": "npm:module-details-from-path", + "type": "static" + } + ], + "npm:import-local@3.1.0": [ + { + "source": "npm:import-local@3.1.0", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local@3.1.0", + "target": "npm:resolve-cwd", + "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:init-package-json": [ + { + "source": "npm:init-package-json", + "target": "npm:npm-package-arg@10.1.0", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:promzard", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:inquirer": [ + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk@4.1.2", + "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@5.4.1", + "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:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:intl-messageformat-parser": [ + { + "source": "npm:intl-messageformat-parser", + "target": "npm:@formatjs/ecma402-abstract", + "type": "static" + }, + { + "source": "npm:intl-messageformat-parser", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:ip-address": [ + { + "source": "npm:ip-address", + "target": "npm:jsbn@1.1.0", + "type": "static" + }, + { + "source": "npm:ip-address", + "target": "npm:sprintf-js@1.1.3", + "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" + } + ], + "npm:is-bigint": [ + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "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@2.0.0", + "type": "static" + } + ], + "npm:is-core-module@2.15.1": [ + { + "source": "npm:is-core-module@2.15.1", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:is-data-view": [ + { + "source": "npm:is-data-view", + "target": "npm:is-typed-array", + "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-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-ssh": [ + { + "source": "npm:is-ssh", + "target": "npm:protocols", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-subdir": [ + { + "source": "npm:is-subdir", + "target": "npm:better-path-resolve", + "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:istanbul-lib-hook": [ + { + "source": "npm:istanbul-lib-hook", + "target": "npm:append-transform", + "type": "static" + } + ], + "npm:istanbul-lib-instrument": [ + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "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.1", + "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:istanbul-lib-instrument@6.0.3": [ + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:istanbul-lib-processinfo": [ + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:archy", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:istanbul-lib-processinfo", + "target": "npm:uuid", + "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@7.2.0", + "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", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:jest-changed-files": [ + { + "source": "npm:jest-changed-files", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit@3.1.0", + "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@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent@1.5.3", + "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@29.7.0", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit@3.1.0", + "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: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@4.1.2", + "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@29.7.0", + "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@17.7.2", + "type": "static" + } + ], + "npm:jest-config": [ + { + "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:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk@4.1.2", + "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-config", + "target": "npm:ts-node", + "type": "static" + } + ], + "npm:jest-config@29.7.0": [ + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-environment-node@29.7.0", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-config@29.7.0", + "target": "npm:ts-node", + "type": "static" + } + ], + "npm:jest-diff@25.5.0": [ + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:diff-sequences@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-diff@25.5.0", + "target": "npm:pretty-format@25.5.0", + "type": "static" + } + ], + "npm:jest-diff": [ + { + "source": "npm:jest-diff", + "target": "npm:chalk@4.1.2", + "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@4.1.2", + "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-environment-node@29.7.0": [ + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.7.0", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-esm-transformer": [ + { + "source": "npm:jest-esm-transformer", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-esm-transformer", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + } + ], + "npm:jest-extended": [ + { + "source": "npm:jest-extended", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-extended", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-extended", + "target": "npm:jest-get-type", + "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-junit": [ + { + "source": "npm:jest-junit", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:jest-junit", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:jest-junit", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:jest-junit", + "target": "npm:xml", + "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@25.5.0": [ + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:jest-diff@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@25.5.0", + "target": "npm:pretty-format@25.5.0", + "type": "static" + } + ], + "npm:jest-matcher-utils": [ + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk@4.1.2", + "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@25.5.0": [ + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util@25.5.0", + "target": "npm:stack-utils@1.0.5", + "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@2.0.3", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk@4.1.2", + "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@25.5.1", + "type": "static" + }, + { + "source": "npm:jest-pnp-resolver", + "target": "npm:jest-resolve", + "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@29.7.0", + "type": "static" + } + ], + "npm:jest-resolve@25.5.1": [ + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:browser-resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:read-pkg-up@7.0.1", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:realpath-native", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve@25.5.1", + "target": "npm:slash", + "type": "static" + } + ], + "npm:jest-resolve": [ + { + "source": "npm:jest-resolve", + "target": "npm:chalk@4.1.2", + "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", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "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@4.1.2", + "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@29.7.0", + "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@3.1.0", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "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@4.1.2", + "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@29.7.0", + "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/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@types/prettier@1.19.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type@25.2.6", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-resolve@25.5.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format@25.5.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:jest-snapshot@29.7.0": [ + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.7.0", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:jest-sonar": [ + { + "source": "npm:jest-sonar", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:jest-sonar", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:jest-specific-snapshot": [ + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest-snapshot", + "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@4.1.2", + "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" + } + ], + "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@4.1.2", + "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@4.1.2", + "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@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: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: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:js-yaml@3.14.1": [ + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:jsdom": [ + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn@8.12.1", + "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@5.0.0", + "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", + "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@11.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws@8.18.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:json-schema-ref-parser": [ + { + "source": "npm:json-schema-ref-parser", + "target": "npm:@apidevtools/json-schema-ref-parser", + "type": "static" + } + ], + "npm:json-schema-to-typescript": [ + { + "source": "npm:json-schema-to-typescript", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:@types/prettier", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:cli-color", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:glob-promise", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:json-schema-ref-parser", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:mz", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:json-schema-to-typescript", + "target": "npm:stdin", + "type": "static" + } + ], + "npm:json-stable-stringify": [ + { + "source": "npm:json-stable-stringify", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:jsonify", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:json5@1.0.2": [ + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:jsonfile@4.0.0": [ + { + "source": "npm:jsonfile@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "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:keyv": [ + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + } + ], + "npm:klaw-sync": [ + { + "source": "npm:klaw-sync", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:lerna": [ + { + "source": "npm:lerna", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@lerna/create", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:import-local@3.1.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmaccess", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:nx@16.10.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-pipe", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-waterfall", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:uuid@9.0.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:libnpmaccess": [ + { + "source": "npm:libnpmaccess", + "target": "npm:npm-package-arg@10.1.0", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmpublish": [ + { + "source": "npm:libnpmpublish", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-package-arg@10.1.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ssri@10.0.6", + "type": "static" + } + ], + "npm:lint-staged": [ + { + "source": "npm:lint-staged", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:log-symbols", + "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:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:stringify-object", + "type": "static" + } + ], + "npm:listr2": [ + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:enquirer", + "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" + } + ], + "npm:load-json-file@4.0.0": [ + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:strip-bom@3.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", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:type-fest@0.6.0", + "type": "static" + } + ], + "npm:load-yaml-file": [ + { + "source": "npm:load-yaml-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:load-yaml-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + } + ], + "npm:loader-utils": [ + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "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:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "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:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "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@6.2.0", + "type": "static" + } + ], + "npm:logform": [ + { + "source": "npm:logform", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:@types/triple-beam", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:fecha", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:logform", + "target": "npm:triple-beam", + "type": "static" + } + ], + "npm:loud-rejection": [ + { + "source": "npm:loud-rejection", + "target": "npm:currently-unhandled", + "type": "static" + }, + { + "source": "npm:loud-rejection", + "target": "npm:signal-exit", + "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:lru-cache@5.1.1": [ + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:lru-queue": [ + { + "source": "npm:lru-queue", + "target": "npm:es5-ext", + "type": "static" + } + ], + "npm:magic-string": [ + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "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:make-dir": [ + { + "source": "npm:make-dir", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:make-dir@4.0.0": [ + { + "source": "npm:make-dir@4.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:make-fetch-happen@10.2.1": [ + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:cacache@16.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-fetch@2.1.2", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:make-fetch-happen": [ + { + "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@5.0.0", + "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@10.0.6", + "type": "static" + } + ], + "npm:makeerror": [ + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + } + ], + "npm:mem-fs-editor": [ + { + "source": "npm:mem-fs-editor", + "target": "npm:binaryextensions", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:mem-fs", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:mem-fs-editor", + "target": "npm:textextensions", + "type": "static" + } + ], + "npm:mem-fs": [ + { + "source": "npm:mem-fs", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:mem-fs", + "target": "npm:vinyl-file", + "type": "static" + } + ], + "npm:memoizee": [ + { + "source": "npm:memoizee", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:event-emitter", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:lru-queue", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:timers-ext", + "type": "static" + } + ], + "npm:meow": [ + { + "source": "npm:meow", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:read-pkg-up@7.0.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:type-fest@0.13.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + } + ], + "npm:meow@8.1.2": [ + { + "source": "npm:meow@8.1.2", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:read-pkg-up@7.0.1", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:type-fest@0.18.1", + "type": "static" + }, + { + "source": "npm:meow@8.1.2", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:minimatch@3.0.5": [ + { + "source": "npm:minimatch@3.0.5", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@5.1.6": [ + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:minimatch@8.0.4": [ + { + "source": "npm:minimatch@8.0.4", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:minimatch@9.0.3": [ + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:minimatch@9.0.5": [ + { + "source": "npm:minimatch@9.0.5", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:minimist-options": [ + { + "source": "npm:minimist-options", + "target": "npm:arrify@1.0.1", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-fetch@2.1.2": [ + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-fetch": [ + { + "source": "npm:minipass-fetch", + "target": "npm:minipass@7.1.2", + "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-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:minipass@3.3.6": [ + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:mkdirp@0.5.6": [ + { + "source": "npm:mkdirp@0.5.6", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:multimatch": [ + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:mz": [ + { + "source": "npm:mz", + "target": "npm:any-promise", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:thenify-all", + "type": "static" + } + ], + "npm:node-fetch@2.6.7": [ + { + "source": "npm:node-fetch@2.6.7", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:node-fetch": [ + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url", + "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", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen@10.2.1", + "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@2.0.2", + "type": "static" + } + ], + "npm:node-preload": [ + { + "source": "npm:node-preload", + "target": "npm:process-on-spawn", + "type": "static" + } + ], + "npm:nopt": [ + { + "source": "npm:nopt", + "target": "npm:abbrev", + "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:normalize-package-data": [ + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info@4.1.0", + "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:normalize-package-data@5.0.0": [ + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:npm-bundled": [ + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-bundled@3.0.1": [ + { + "source": "npm:npm-bundled@3.0.1", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:npm-install-checks": [ + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-package-arg@10.1.0": [ + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg@10.1.0", + "target": "npm:validate-npm-package-name", + "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:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + } + ], + "npm:npm-packlist": [ + { + "source": "npm:npm-packlist", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-packlist@7.0.4": [ + { + "source": "npm:npm-packlist@7.0.4", + "target": "npm:ignore-walk@6.0.5", + "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@3.0.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg@10.1.0", + "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@10.1.0", + "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", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:chalk", + "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", + "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:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key@3.1.1", + "type": "static" + } + ], + "npm:npmlog": [ + { + "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" + } + ], + "npm:nx@16.10.0": [ + { + "source": "npm:nx@16.10.0", + "target": "npm:@nrwl/tao@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@zkochan/js-yaml@0.0.6", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:dotenv@16.3.2", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:dotenv-expand@10.0.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:enquirer@2.3.6", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:v8-compile-cache@2.3.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-darwin-arm64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-darwin-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-freebsd-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-linux-x64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "type": "static" + }, + { + "source": "npm:nx@16.10.0", + "target": "npm:@nx/nx-win32-x64-msvc@16.10.0", + "type": "static" + } + ], + "npm:nx": [ + { + "source": "npm:nx", + "target": "npm:@napi-rs/wasm-runtime", + "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.7.7", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk@4.1.2", + "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@2.3.6", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:front-matter", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "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@9.0.3", + "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:ora", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.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:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser@21.1.1", + "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:nyc": [ + { + "source": "npm:nyc", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:caching-transform", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-hook", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-processinfo", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:node-preload", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:process-on-spawn", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:spawn-wrap", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:nyc", + "target": "npm:yargs", + "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.fromentries": [ + { + "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.fromentries", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:object.groupby": [ + { + "source": "npm:object.groupby", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.values": [ + { + "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-object-atoms", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:one-time": [ + { + "source": "npm:one-time", + "target": "npm:fn.name", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "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: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@4.1.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners@2.9.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "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:ora@5.4.1": [ + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners@2.9.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:p-filter": [ + { + "source": "npm:p-filter", + "target": "npm:p-map@2.1.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-limit": [ + { + "source": "npm:p-limit", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-limit@3.1.0": [ + { + "source": "npm:p-limit@3.1.0", + "target": "npm:yocto-queue", + "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:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:p-locate@5.0.0": [ + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit@3.1.0", + "type": "static" + } + ], + "npm:p-map@3.0.0": [ + { + "source": "npm:p-map@3.0.0", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:p-map": [ + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:p-queue": [ + { + "source": "npm:p-queue", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:p-timeout", + "type": "static" + } + ], + "npm:p-timeout": [ + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + } + ], + "npm:p-waterfall": [ + { + "source": "npm:p-waterfall", + "target": "npm:p-reduce", + "type": "static" + } + ], + "npm:package-hash": [ + { + "source": "npm:package-hash", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:hasha", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:lodash.flattendeep", + "type": "static" + }, + { + "source": "npm:package-hash", + "target": "npm:release-zalgo", + "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@10.1.0", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist@7.0.4", + "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@10.0.6", + "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@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: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@2.3.1", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + } + ], + "npm:parse-path": [ + { + "source": "npm:parse-path", + "target": "npm:protocols", + "type": "static" + } + ], + "npm:parse-url": [ + { + "source": "npm:parse-url", + "target": "npm:parse-path", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities@4.5.0", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.1.2", + "type": "static" + } + ], + "npm:path-type@3.0.0": [ + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.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: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:preferred-pm": [ + { + "source": "npm:preferred-pm", + "target": "npm:find-up@5.0.0", + "type": "static" + }, + { + "source": "npm:preferred-pm", + "target": "npm:find-yarn-workspace-root2", + "type": "static" + }, + { + "source": "npm:preferred-pm", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:preferred-pm", + "target": "npm:which-pm", + "type": "static" + } + ], + "npm:pretty-format@25.5.0": [ + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:react-is@16.13.1", + "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:process-on-spawn": [ + { + "source": "npm:process-on-spawn", + "target": "npm:fromentries", + "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:prompts": [ + { + "source": "npm:prompts", + "target": "npm:kleur@3.0.3", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + } + ], + "npm:promzard": [ + { + "source": "npm:promzard", + "target": "npm:read@3.0.1", + "type": "static" + } + ], + "npm:proxyquire": [ + { + "source": "npm:proxyquire", + "target": "npm:fill-keys", + "type": "static" + }, + { + "source": "npm:proxyquire", + "target": "npm:module-not-found-error", + "type": "static" + }, + { + "source": "npm:proxyquire", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:read-package-json-fast": [ + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:read-package-json": [ + { + "source": "npm:read-package-json", + "target": "npm:glob@10.4.5", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:read-pkg-up": [ + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg", + "type": "static" + } + ], + "npm:read-pkg-up@7.0.1": [ + { + "source": "npm:read-pkg-up@7.0.1", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:read-pkg-up@7.0.1", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@7.0.1", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:read-pkg": [ + { + "source": "npm:read-pkg", + "target": "npm:load-json-file@4.0.0", + "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@5.2.0": [ + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:type-fest@0.6.0", + "type": "static" + } + ], + "npm:read-yaml-file": [ + { + "source": "npm:read-yaml-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + } + ], + "npm:read": [ + { + "source": "npm:read", + "target": "npm:mute-stream@1.0.0", + "type": "static" + } + ], + "npm:read@3.0.1": [ + { + "source": "npm:read@3.0.1", + "target": "npm:mute-stream@1.0.0", + "type": "static" + } + ], + "npm:readable-stream@2.3.8": [ + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.3.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:rechoir": [ + { + "source": "npm:rechoir", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:redent": [ + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "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:es-errors", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:release-zalgo": [ + { + "source": "npm:release-zalgo", + "target": "npm:es6-error", + "type": "static" + } + ], + "npm:request": [ + { + "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@2.3.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:har-validator", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:http-signature", + "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", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tough-cookie@2.5.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:uuid@3.4.0", + "type": "static" + } + ], + "npm:require-in-the-middle": [ + { + "source": "npm:require-in-the-middle", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:require-in-the-middle", + "target": "npm:module-details-from-path", + "type": "static" + }, + { + "source": "npm:require-in-the-middle", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve-dir": [ + { + "source": "npm:resolve-dir", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:global-modules", + "type": "static" + } + ], + "npm:resolve-global": [ + { + "source": "npm:resolve-global", + "target": "npm:global-dirs", + "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:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:rimraf@2.7.1": [ + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf": [ + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf@4.4.1": [ + { + "source": "npm:rimraf@4.4.1", + "target": "npm:glob@9.3.5", + "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", + "type": "static" + } + ], + "npm:safe-regex-test": [ + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "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@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:semver": [ + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver@7.5.3": [ + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver@7.5.4": [ + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "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:es-errors", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:function-bind", + "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:es-errors", + "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:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + } + ], + "npm:shebang-command@2.0.0": [ + { + "source": "npm:shebang-command@2.0.0", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:shelljs": [ + { + "source": "npm:shelljs", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:rechoir", + "type": "static" + } + ], + "npm:shx": [ + { + "source": "npm:shx", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:shx", + "target": "npm:shelljs", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "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" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:simple-git": [ + { + "source": "npm:simple-git", + "target": "npm:@kwsites/file-exists", + "type": "static" + }, + { + "source": "npm:simple-git", + "target": "npm:@kwsites/promise-deferred", + "type": "static" + }, + { + "source": "npm:simple-git", + "target": "npm:debug", + "type": "static" + } + ], + "npm:simple-swizzle": [ + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.2", + "type": "static" + } + ], + "npm:slice-ansi": [ + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@4.3.0", + "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:slice-ansi@4.0.0": [ + { + "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", + "type": "static" + } + ], + "npm:smartwrap": [ + { + "source": "npm:smartwrap", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:breakword", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:grapheme-splitter", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:smartwrap", + "target": "npm:yargs", + "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:socks": [ + { + "source": "npm:socks", + "target": "npm:ip-address", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + } + ], + "npm:sort-any": [ + { + "source": "npm:sort-any", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:sort-keys": [ + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj", + "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", + "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", + "type": "static" + } + ], + "npm:source-map-support@0.5.21": [ + { + "source": "npm:source-map-support@0.5.21", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.21", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:spawn-wrap": [ + { + "source": "npm:spawn-wrap", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:spawn-wrap", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:spawndamnit": [ + { + "source": "npm:spawndamnit", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:spawndamnit", + "target": "npm:signal-exit", + "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:split2": [ + { + "source": "npm:split2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:split": [ + { + "source": "npm:split", + "target": "npm:through", + "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:ssri@10.0.6": [ + { + "source": "npm:ssri@10.0.6", + "target": "npm:minipass@7.1.2", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:stack-generator": [ + { + "source": "npm:stack-generator", + "target": "npm:stackframe", + "type": "static" + } + ], + "npm:stack-utils@1.0.5": [ + { + "source": "npm:stack-utils@1.0.5", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:stack-utils": [ + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:stacktrace-gps": [ + { + "source": "npm:stacktrace-gps", + "target": "npm:source-map@0.5.6", + "type": "static" + }, + { + "source": "npm:stacktrace-gps", + "target": "npm:stackframe", + "type": "static" + } + ], + "npm:stacktrace-js": [ + { + "source": "npm:stacktrace-js", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stack-generator", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stacktrace-gps", + "type": "static" + } + ], + "npm:stream-transform": [ + { + "source": "npm:stream-transform", + "target": "npm:mixme", + "type": "static" + } + ], + "npm:streamroller": [ + { + "source": "npm:streamroller", + "target": "npm:date-format", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:fs-extra@8.1.0", + "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-replace-loader": [ + { + "source": "npm:string-replace-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:string-replace-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:string-replace-loader", + "target": "npm:webpack", + "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: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: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" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:es-object-atoms", + "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" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-object-atoms", + "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-object-atoms", + "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-object-atoms", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:string_decoder@1.3.0": [ + { + "source": "npm:string_decoder@1.3.0", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:stringify-object": [ + { + "source": "npm:stringify-object", + "target": "npm:get-own-enumerable-property-symbols", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-regexp", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi@7.1.0": [ + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.1.0", + "type": "static" + } + ], + "npm:strip-bom-buf": [ + { + "source": "npm:strip-bom-buf", + "target": "npm:is-utf8", + "type": "static" + } + ], + "npm:strip-bom-stream": [ + { + "source": "npm:strip-bom-stream", + "target": "npm:first-chunk-stream", + "type": "static" + }, + { + "source": "npm:strip-bom-stream", + "target": "npm:strip-bom@2.0.0", + "type": "static" + } + ], + "npm:strip-bom@2.0.0": [ + { + "source": "npm:strip-bom@2.0.0", + "target": "npm:is-utf8", + "type": "static" + } + ], + "npm:strip-indent": [ + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "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:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-color@7.2.0": [ + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag@4.0.0", + "type": "static" + } + ], + "npm:supports-color@8.1.1": [ + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag@4.0.0", + "type": "static" + } + ], + "npm:table": [ + { + "source": "npm:table", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi", + "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", + "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@3.3.6", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:tempfile": [ + { + "source": "npm:tempfile", + "target": "npm:temp-dir@2.0.0", + "type": "static" + }, + { + "source": "npm:tempfile", + "target": "npm:uuid@3.4.0", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:esbuild", + "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", + "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:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn@8.12.1", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support@0.5.21", + "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:thenify-all": [ + { + "source": "npm:thenify-all", + "target": "npm:thenify", + "type": "static" + } + ], + "npm:thenify": [ + { + "source": "npm:thenify", + "target": "npm:any-promise", + "type": "static" + } + ], + "npm:through2@2.0.5": [ + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:through2": [ + { + "source": "npm:through2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:timers-ext": [ + { + "source": "npm:timers-ext", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:timers-ext", + "target": "npm:next-tick", + "type": "static" + } + ], + "npm:tmp-promise": [ + { + "source": "npm:tmp-promise", + "target": "npm:tmp", + "type": "static" + } + ], + "npm:tmp@0.0.33": [ + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:tmp": [ + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + } + ], + "npm:tough-cookie@2.5.0": [ + { + "source": "npm:tough-cookie@2.5.0", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie@2.5.0", + "target": "npm:punycode", + "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@3.0.0": [ + { + "source": "npm:tr46@3.0.0", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:ts-jest": [ + { + "source": "npm:ts-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest", + "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:typescript", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ], + "npm:ts-node": [ + { + "source": "npm:ts-node", + "target": "npm:arg", + "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:source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + } + ], + "npm:tsconfig-paths@3.15.0": [ + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:strip-bom@3.0.0", + "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:tsutils": [ + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:tty-table": [ + { + "source": "npm:tty-table", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:csv", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:smartwrap", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:tty-table", + "target": "npm:yargs@17.7.2", + "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: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:typed-array-buffer": [ + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:es-errors", + "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:gopd", + "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:gopd", + "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:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:possible-typed-array-names", + "type": "static" + } + ], + "npm:typedarray-to-buffer": [ + { + "source": "npm:typedarray-to-buffer", + "target": "npm:is-typedarray", + "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:unique-filename@2.0.1": [ + { + "source": "npm:unique-filename@2.0.1", + "target": "npm:unique-slug@3.0.0", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-slug@3.0.0": [ + { + "source": "npm:unique-slug@3.0.0", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unzipper": [ + { + "source": "npm:unzipper", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:binary", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:buffer-indexof-polyfill", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:duplexer2", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:fstream", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:listenercount", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:setimmediate", + "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:update-ts-references": [ + { + "source": "npm:update-ts-references", + "target": "npm:@formatjs/cli", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:comment-json", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:update-ts-references", + "target": "npm:mkdirp", + "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: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@3.0.0": [ + { + "source": "npm:validate-npm-package-name@3.0.0", + "target": "npm:builtins@1.0.3", + "type": "static" + } + ], + "npm:validate-npm-package-name": [ + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "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:vinyl-file": [ + { + "source": "npm:vinyl-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:pify@2.3.0", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:strip-bom-buf", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:strip-bom-stream", + "type": "static" + }, + { + "source": "npm:vinyl-file", + "target": "npm:vinyl", + "type": "static" + } + ], + "npm:vinyl": [ + { + "source": "npm:vinyl", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-buffer", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-stats", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:cloneable-readable", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:replace-ext", + "type": "static" + } + ], + "npm:vscode-languageclient": [ + { + "source": "npm:vscode-languageclient", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:vscode-languageclient", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:vscode-languageclient", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + } + ], + "npm:vscode-languageserver-protocol": [ + { + "source": "npm:vscode-languageserver-protocol", + "target": "npm:vscode-jsonrpc", + "type": "static" + }, + { + "source": "npm:vscode-languageserver-protocol", + "target": "npm:vscode-languageserver-types", + "type": "static" + } + ], + "npm:vscode-languageserver": [ + { + "source": "npm:vscode-languageserver", + "target": "npm:vscode-languageserver-protocol", + "type": "static" + } + ], + "npm:vscode-test": [ + { + "source": "npm:vscode-test", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:vscode-test", + "target": "npm:unzipper", + "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:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:webpack": [ + { + "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@8.12.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-attributes", + "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", + "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@2.3.1", + "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", + "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:whatwg-encoding": [ + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + } + ], + "npm:whatwg-url@11.0.0": [ + { + "source": "npm:whatwg-url@11.0.0", + "target": "npm:tr46@3.0.0", + "type": "static" + }, + { + "source": "npm:whatwg-url@11.0.0", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions@3.0.1", + "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-pm": [ + { + "source": "npm:which-pm", + "target": "npm:load-yaml-file", + "type": "static" + }, + { + "source": "npm:which-pm", + "target": "npm:path-exists", + "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:which@1.3.1": [ + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which@2.0.2": [ + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:wide-align": [ + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:winston-transport": [ + { + "source": "npm:winston-transport", + "target": "npm:logform", + "type": "static" + }, + { + "source": "npm:winston-transport", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:winston-transport", + "target": "npm:triple-beam", + "type": "static" + } + ], + "npm:winston-transport@4.6.0": [ + { + "source": "npm:winston-transport@4.6.0", + "target": "npm:logform", + "type": "static" + }, + { + "source": "npm:winston-transport@4.6.0", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:winston-transport@4.6.0", + "target": "npm:triple-beam", + "type": "static" + } + ], + "npm:winston": [ + { + "source": "npm:winston", + "target": "npm:@dabh/diagnostics", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:logform", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:one-time", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:stack-trace", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:triple-beam", + "type": "static" + }, + { + "source": "npm:winston", + "target": "npm:winston-transport@4.6.0", + "type": "static" + } + ], + "npm:wrap-ansi@6.2.0": [ + { + "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" + } + ], + "npm:wrap-ansi": [ + { + "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" + } + ], + "npm:wrap-ansi-cjs": [ + { + "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" + } + ], + "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:write-file-atomic@2.4.3": [ + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:write-file-atomic@3.0.3": [ + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:typedarray-to-buffer", + "type": "static" + } + ], + "npm:write-file-atomic@4.0.2": [ + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "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@4.1.0", + "type": "static" + } + ], + "npm:write-json-file": [ + { + "source": "npm:write-json-file", + "target": "npm:detect-indent@5.0.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:write-file-atomic@2.4.3", + "type": "static" + } + ], + "npm:write-pkg": [ + { + "source": "npm:write-pkg", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:type-fest@0.4.1", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:write-json-file", + "type": "static" + } + ], + "npm:xml-js": [ + { + "source": "npm:xml-js", + "target": "npm:sax", + "type": "static" + } + ], + "npm:yargs-parser@18.1.3": [ + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui@6.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:find-up", + "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:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser@18.1.3", + "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@5.0.8", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:yargs@17.7.2": [ + { + "source": "npm:yargs@17.7.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:y18n@5.0.8", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ] + }, + "version": "6.0" +} diff --git a/del.txt b/del.txt new file mode 100644 index 000000000..93ee0741b --- /dev/null +++ b/del.txt @@ -0,0 +1,816 @@ +[ + { + "name": "@ui5-language-assistant/root", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant", + "private": true, + "unsavedDependencies": { + "conventional-changelog-eslint": { + "from": "conventional-changelog-eslint", + "version": "link:node_modules/.pnpm/conventional-changelog-eslint@3.0.9/node_modules/conventional-changelog-eslint", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/conventional-changelog-eslint@3.0.9/node_modules/conventional-changelog-eslint" + }, + "eslint-import-resolver-node": { + "from": "eslint-import-resolver-node", + "version": "link:node_modules/.pnpm/eslint-import-resolver-node@0.3.9/node_modules/eslint-import-resolver-node", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/eslint-import-resolver-node@0.3.9/node_modules/eslint-import-resolver-node" + }, + "eslint-module-utils": { + "from": "eslint-module-utils", + "version": "link:node_modules/.pnpm/eslint-module-utils@2.12.0_eslint-import-resolver-node@0.3.9_eslint-import-resolver-typescript@3.6.1_eslint@7.18.0/node_modules/eslint-module-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/eslint-module-utils@2.12.0_eslint-import-resolver-node@0.3.9_eslint-import-resolver-typescript@3.6.1_eslint@7.18.0/node_modules/eslint-module-utils" + }, + "eslint-plugin-import": { + "from": "eslint-plugin-import", + "version": "link:node_modules/.pnpm/eslint-plugin-import@2.31.0_eslint-import-resolver-typescript@3.6.1_eslint@7.18.0/node_modules/eslint-plugin-import", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/eslint-plugin-import@2.31.0_eslint-import-resolver-typescript@3.6.1_eslint@7.18.0/node_modules/eslint-plugin-import" + }, + "eslint-scope": { + "from": "eslint-scope", + "version": "link:node_modules/.pnpm/eslint-scope@5.1.1/node_modules/eslint-scope", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/eslint-scope@5.1.1/node_modules/eslint-scope" + }, + "eslint-utils": { + "from": "eslint-utils", + "version": "link:node_modules/.pnpm/eslint-utils@2.1.0/node_modules/eslint-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/eslint-utils@2.1.0/node_modules/eslint-utils" + }, + "@eslint/eslintrc": { + "from": "@eslint/eslintrc", + "version": "link:node_modules/.pnpm/@eslint+eslintrc@0.3.0/node_modules/@eslint/eslintrc", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@eslint+eslintrc@0.3.0/node_modules/@eslint/eslintrc" + }, + "eslint-visitor-keys": { + "from": "eslint-visitor-keys", + "version": "link:node_modules/.pnpm/eslint-visitor-keys@2.1.0/node_modules/eslint-visitor-keys", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/eslint-visitor-keys@2.1.0/node_modules/eslint-visitor-keys" + }, + "@types/prettier": { + "from": "@types/prettier", + "version": "link:node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier" + }, + "@typescript-eslint/eslint-plugin": { + "from": "@typescript-eslint/eslint-plugin", + "version": "link:node_modules/.pnpm/@typescript-eslint+eslint-plugin@4.33.0_@typescript-eslint+parser@4.14.0_eslint@7.18.0_typescript@4.9.4/node_modules/@typescript-eslint/eslint-plugin", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+eslint-plugin@4.33.0_@typescript-eslint+parser@4.14.0_eslint@7.18.0_typescript@4.9.4/node_modules/@typescript-eslint/eslint-plugin" + }, + "@typescript-eslint/experimental-utils": { + "from": "@typescript-eslint/experimental-utils", + "version": "link:node_modules/.pnpm/@typescript-eslint+experimental-utils@4.33.0_eslint@7.18.0_typescript@4.9.4/node_modules/@typescript-eslint/experimental-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+experimental-utils@4.33.0_eslint@7.18.0_typescript@4.9.4/node_modules/@typescript-eslint/experimental-utils" + }, + "@typescript-eslint/parser": { + "from": "@typescript-eslint/parser", + "version": "link:node_modules/.pnpm/@typescript-eslint+parser@4.14.0_eslint@7.18.0_typescript@4.9.4/node_modules/@typescript-eslint/parser", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+parser@4.14.0_eslint@7.18.0_typescript@4.9.4/node_modules/@typescript-eslint/parser" + }, + "@typescript-eslint/scope-manager": { + "from": "@typescript-eslint/scope-manager", + "version": "link:node_modules/.pnpm/@typescript-eslint+scope-manager@4.33.0/node_modules/@typescript-eslint/scope-manager", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+scope-manager@4.33.0/node_modules/@typescript-eslint/scope-manager" + }, + "@typescript-eslint/types": { + "from": "@typescript-eslint/types", + "version": "link:node_modules/.pnpm/@typescript-eslint+types@4.14.0/node_modules/@typescript-eslint/types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+types@4.14.0/node_modules/@typescript-eslint/types" + }, + "@typescript-eslint/typescript-estree": { + "from": "@typescript-eslint/typescript-estree", + "version": "link:node_modules/.pnpm/@typescript-eslint+typescript-estree@4.14.0_typescript@4.9.4/node_modules/@typescript-eslint/typescript-estree", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+typescript-estree@4.14.0_typescript@4.9.4/node_modules/@typescript-eslint/typescript-estree" + }, + "@typescript-eslint/visitor-keys": { + "from": "@typescript-eslint/visitor-keys", + "version": "link:node_modules/.pnpm/@typescript-eslint+visitor-keys@4.14.0/node_modules/@typescript-eslint/visitor-keys", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/node_modules/.pnpm/@typescript-eslint+visitor-keys@4.14.0/node_modules/@typescript-eslint/visitor-keys" + } + } + }, + { + "name": "@ui5-language-assistant/binding", + "version": "1.0.34", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding", + "private": true, + "dependencies": { + "@ui5-language-assistant/binding-parser": { + "from": "@ui5-language-assistant/binding-parser", + "version": "link:../binding-parser", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logger": { + "from": "@ui5-language-assistant/logger", + "version": "link:../logger", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + }, + "@ui5-language-assistant/xml-views-validation": { + "from": "@ui5-language-assistant/xml-views-validation", + "version": "link:../xml-views-validation", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/binding-parser", + "version": "1.0.7", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser", + "private": true + }, + { + "name": "@ui5-language-assistant/constant", + "version": "0.0.1", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant", + "private": true + }, + { + "name": "@ui5-language-assistant/context", + "version": "4.0.29", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/language-server": { + "from": "@ui5-language-assistant/language-server", + "version": "link:../language-server", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server" + }, + "@ui5-language-assistant/logger": { + "from": "@ui5-language-assistant/logger", + "version": "link:../logger", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:../semantic-model", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/fe", + "version": "4.0.33", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe", + "private": true, + "dependencies": { + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + }, + "@ui5-language-assistant/xml-views-completion": { + "from": "@ui5-language-assistant/xml-views-completion", + "version": "link:../xml-views-completion", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-completion" + }, + "@ui5-language-assistant/xml-views-validation": { + "from": "@ui5-language-assistant/xml-views-validation", + "version": "link:../xml-views-validation", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + } + } + }, + { + "name": "@ui5-language-assistant/language-server", + "version": "4.0.56", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server", + "private": true, + "dependencies": { + "@ui5-language-assistant/binding": { + "from": "@ui5-language-assistant/binding", + "version": "link:../binding", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding" + }, + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/fe": { + "from": "@ui5-language-assistant/fe", + "version": "link:../fe", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe" + }, + "@ui5-language-assistant/language-server": { + "from": "@ui5-language-assistant/language-server", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server" + }, + "@ui5-language-assistant/logger": { + "from": "@ui5-language-assistant/logger", + "version": "link:../logger", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:../semantic-model", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + }, + "@ui5-language-assistant/user-facing-text": { + "from": "@ui5-language-assistant/user-facing-text", + "version": "link:../user-facing-text", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text" + }, + "@ui5-language-assistant/xml-views-completion": { + "from": "@ui5-language-assistant/xml-views-completion", + "version": "link:../xml-views-completion", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-completion" + }, + "@ui5-language-assistant/xml-views-definition": { + "from": "@ui5-language-assistant/xml-views-definition", + "version": "link:../xml-views-definition", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-definition" + }, + "@ui5-language-assistant/xml-views-quick-fix": { + "from": "@ui5-language-assistant/xml-views-quick-fix", + "version": "link:../xml-views-quick-fix", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-quick-fix" + }, + "@ui5-language-assistant/xml-views-tooltip": { + "from": "@ui5-language-assistant/xml-views-tooltip", + "version": "link:../xml-views-tooltip", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-tooltip" + }, + "@ui5-language-assistant/xml-views-validation": { + "from": "@ui5-language-assistant/xml-views-validation", + "version": "link:../xml-views-validation", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation" + } + }, + "devDependencies": { + "@ui5-language-assistant/binding-parser": { + "from": "@ui5-language-assistant/binding-parser", + "version": "link:../binding-parser", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/logger", + "version": "0.0.1", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger", + "private": true, + "dependencies": { + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + } + } + }, + { + "name": "@ui5-language-assistant/logic-utils", + "version": "4.0.20", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/logger": { + "from": "@ui5-language-assistant/logger", + "version": "link:../logger", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:../semantic-model", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/semantic-model", + "version": "4.0.18", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/logger": { + "from": "@ui5-language-assistant/logger", + "version": "link:../logger", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger" + }, + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + } + }, + "devDependencies": { + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/semantic-model-types", + "version": "4.0.11", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + } + } + }, + { + "name": "@ui5-language-assistant/settings", + "version": "4.0.9", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings", + "private": true + }, + { + "name": "@ui5-language-assistant/user-facing-text", + "version": "4.0.9", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text", + "private": true + }, + { + "name": "vscode-ui5-language-assistant", + "version": "4.0.73", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant", + "private": true, + "dependencies": { + "@ui5-language-assistant/language-server": { + "from": "@ui5-language-assistant/language-server", + "version": "link:../language-server", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server" + } + }, + "devDependencies": { + "@ui5-language-assistant/binding": { + "from": "@ui5-language-assistant/binding", + "version": "link:../binding", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding" + }, + "@ui5-language-assistant/binding-parser": { + "from": "@ui5-language-assistant/binding-parser", + "version": "link:../binding-parser", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser" + }, + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + }, + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + }, + "@ui5-language-assistant/user-facing-text": { + "from": "@ui5-language-assistant/user-facing-text", + "version": "link:../user-facing-text", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text" + }, + "vscode-ui5-language-assistant": { + "from": "vscode-ui5-language-assistant", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant" + } + } + }, + { + "name": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", + "version": "4.0.73", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant-bas-ext", + "private": false + }, + { + "name": "@ui5-language-assistant/xml-views-completion", + "version": "4.0.29", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-completion", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + }, + "@ui5-language-assistant/xml-views-completion": { + "from": "@ui5-language-assistant/xml-views-completion", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-completion" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:../semantic-model", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + } + } + }, + { + "name": "@ui5-language-assistant/xml-views-definition", + "version": "0.0.7", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-definition", + "private": true, + "dependencies": { + "@ui5-language-assistant/binding-parser": { + "from": "@ui5-language-assistant/binding-parser", + "version": "link:../binding-parser", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + } + }, + "devDependencies": { + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + } + } + }, + { + "name": "@ui5-language-assistant/xml-views-quick-fix", + "version": "4.0.21", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-quick-fix", + "private": true, + "dependencies": { + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + } + }, + "devDependencies": { + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/xml-views-tooltip", + "version": "4.0.29", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-tooltip", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:../semantic-model", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/xml-views-validation", + "version": "4.0.23", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/user-facing-text": { + "from": "@ui5-language-assistant/user-facing-text", + "version": "link:../user-facing-text", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text" + }, + "@ui5-language-assistant/xml-views-validation": { + "from": "@ui5-language-assistant/xml-views-validation", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model": { + "from": "@ui5-language-assistant/semantic-model", + "version": "link:../semantic-model", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model" + }, + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:../../test-packages/test-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + } + } + }, + { + "name": "@ui5-language-assistant/test-framework", + "version": "4.0.12", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework", + "private": true, + "dependencies": { + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + } + } + }, + { + "name": "@ui5-language-assistant/test-utils", + "version": "4.0.16", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils", + "private": true, + "dependencies": { + "@ui5-language-assistant/constant": { + "from": "@ui5-language-assistant/constant", + "version": "link:../../packages/constant", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant" + }, + "@ui5-language-assistant/language-server": { + "from": "@ui5-language-assistant/language-server", + "version": "link:../../packages/language-server", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server" + }, + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../../packages/semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-utils": { + "from": "@ui5-language-assistant/test-utils", + "version": "link:", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils" + }, + "@ui5-language-assistant/xml-views-completion": { + "from": "@ui5-language-assistant/xml-views-completion", + "version": "link:../../packages/xml-views-completion", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-completion" + } + } + } +] +[ + { + "name": "@ui5-language-assistant/fe", + "version": "4.0.33", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe", + "private": true, + "dependencies": { + "@ui5-language-assistant/context": { + "from": "@ui5-language-assistant/context", + "version": "link:../context", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context" + }, + "@ui5-language-assistant/logic-utils": { + "from": "@ui5-language-assistant/logic-utils", + "version": "link:../logic-utils", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logic-utils" + }, + "@ui5-language-assistant/settings": { + "from": "@ui5-language-assistant/settings", + "version": "link:../settings", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings" + }, + "@ui5-language-assistant/xml-views-completion": { + "from": "@ui5-language-assistant/xml-views-completion", + "version": "link:../xml-views-completion", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-completion" + }, + "@ui5-language-assistant/xml-views-validation": { + "from": "@ui5-language-assistant/xml-views-validation", + "version": "link:../xml-views-validation", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation" + } + }, + "devDependencies": { + "@ui5-language-assistant/semantic-model-types": { + "from": "@ui5-language-assistant/semantic-model-types", + "version": "link:../semantic-model-types", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types" + }, + "@ui5-language-assistant/test-framework": { + "from": "@ui5-language-assistant/test-framework", + "version": "link:../../test-packages/framework", + "path": "/Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework" + } + } + } +] diff --git a/nx.json_noused b/nx.json_noused new file mode 100644 index 000000000..c9808b2a8 --- /dev/null +++ b/nx.json_noused @@ -0,0 +1,68 @@ +{ + "tasksRunnerOptions": { + "default": { + "runner": "@nrwl/nx-cloud", + "options": { + "cacheableOperations": [ + + ], + "accessToken": "ZjFiYzA4OTYtYjFlNS00NTI2LTk4OTktNWZiYTAyMGE0ZGRmfHJlYWQtd3JpdGU=", + "canTrackAnalytics": false, + "showUsageWarnings": true + } + } + }, + "namedInputs": { + "default": ["{projectRoot}/**/*"], + "prod": [ + "!{projectRoot}/**/*.spec.tsx", + "!{projectRoot}/**/*.test.tsx", + "!{projectRoot}/**/*.spec.ts", + "!{projectRoot}/**/*.test.ts" + ] + }, + "targetDefaults": { + "build": { + "dependsOn": ["^build"], + "outputs": [ + "{projectRoot}/dist", + "{projectRoot}/lib", + "{projectRoot}/storybook" + ] + }, + "test": { + "inputs": [ + "default", + "^prod", + "{workspaceRoot}/jest.base.js", + "{projectRoot}/jest.config.js" + ], + "outputs": ["{projectRoot}/coverage"] + }, + "test:integration": { + "inputs": [ + "default", + "^prod", + "{workspaceRoot}/jest.base.js", + "{projectRoot}/jest.config.js" + ], + "outputs": ["{projectRoot}/playwright-report"] + }, + "build:extension": { + "outputs": ["{projectRoot}/*.vsix"] + }, + "build:storybook": { + "outputs": ["{projectRoot}/storybook"] + }, + "lint": { + "inputs": ["default", "^prod"] + }, + "lint:fix": { + "inputs": ["default", "^prod"] + }, + "clean": { + "inputs": [] + } + }, + "defaultBase": "main" +} diff --git a/package.json b/package.json index 4c21ed338..70e91763b 100644 --- a/package.json +++ b/package.json @@ -2,44 +2,42 @@ "name": "@ui5-language-assistant/root", "private": true, "scripts": { - "build:quick": "lerna run compile && lerna run bundle && lerna run package", + "build:quick": "nx run-many --target=compile --all", "release:version": "lerna version --force-publish", "release:publish": "lerna publish from-package --yes", "ci": "npm-run-all format:validate ci:subpackages legal:*", - "compile": "yarn run clean && tsc --build", - "compile:watch": "yarn run clean && tsc --build --watch", + "compile:watch": "pnpm run clean && tsc --build --watch", "format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", "format:validate": "prettier --check \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", "lint": "eslint . --ext .ts --fix --max-warnings=0 --ignore-path=.gitignore", - "ci:subpackages": "lerna run ci", - "test": "lerna run test", - "coverage": "lerna run coverage", - "clean": "lerna run clean", - "update-snapshots": "lerna run update-snapshots", - "legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true", - "legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"", + "ci:subpackages": "pnpm run --recursive ci", + "test": "pnpm run --recursive test", + "coverage": "pnpm run --recursive coverage", + "clean": "pnpm run --recursive clean", + "update-snapshots": "pnpm run --recursive update-snapshots", + "legal:delete": "pnpm exec \"shx rm -rf .reuse LICENSES\" || true", + "legal:copy": "pnpm exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"", "prepare": "node ./.husky/skip.js || husky install", "hooks:pre-commit": "lint-staged", "hooks:commit-msg": "commitlint -e", "cset": "changeset", - "ci:version": "changeset version" + "ci:version": "changeset version", + "graph-deps": "nx graph", + "clean:nx:cache": "nx reset" }, "devDependencies": { "@changesets/cli": "2.26.0", "@commitlint/cli": "11.0.0", "@commitlint/config-conventional": "11.0.0", - "@types/chai": "4.2.14", - "@types/deep-equal-in-any-order": "1.0.1", "@types/fs-extra": "9.0.11", "@types/jest": "29.2.6", "@types/jest-specific-snapshot": "0.5.5", + "@types/node": "18.11.9", "@types/klaw-sync": "6.0.0", - "@types/lodash": "4.14.166", + "@types/lodash": "4.14.168", "@types/rimraf": "3.0.0", "@types/sinon": "9.0.10", "@types/sinon-chai": "3.2.5", - "@typescript-eslint/eslint-plugin": "4.33.0", - "@typescript-eslint/parser": "4.14.0", "chai": "4.2.0", "conventional-changelog-cli": "2.1.1", "coveralls": "3.1.0", @@ -48,6 +46,7 @@ "eslint": "7.18.0", "eslint-config-prettier": "7.2.0", "eslint-plugin-eslint-comments": "3.2.0", + "eslint-import-resolver-typescript": "3.6.1", "fs-extra": "10.1.0", "glob": "7.1.6", "husky": "8.0.1", @@ -67,6 +66,7 @@ "make-dir": "3.1.0", "mock-fs": "^5.2.0", "npm-run-all": "4.1.5", + "nyc": "15.1.0", "prettier": "2.8.7", "rimraf": "3.0.2", "shx": "0.3.3", @@ -75,7 +75,9 @@ "ts-node": "8.5.2", "source-map-support": "0.5.19", "typescript": "4.9.4", - "esbuild": "0.17.12" + "esbuild": "0.17.12", + "nx": "^19.7.4", + "update-ts-references": "3.2.1" }, "engines": { "npm": "please-use-pnpm", @@ -109,5 +111,8 @@ "setupFilesAfterEnv": [ "jest-extended/all" ] + }, + "dependencies": { + "@sap/swa-for-sapbas-vsx": "^2.0.7" } } diff --git a/packages/binding-parser/package.json b/packages/binding-parser/package.json index f13f013c4..cbee8450a 100644 --- a/packages/binding-parser/package.json +++ b/packages/binding-parser/package.json @@ -15,16 +15,17 @@ "repository": "https://github.com/sap/ui5-language-assistant/", "license": "Apache-2.0", "dependencies": { - "chevrotain": "10.4.2", - "vscode-languageserver-types": "3.17.2" + "vscode-languageserver-protocol": "3.17.2", + "vscode-languageserver-types": "3.17.2", + "chevrotain": "10.4.2" }, "devDependencies": { "cross-env": "7.0.3" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/binding-parser/tsconfig.json b/packages/binding-parser/tsconfig.json index 7396fa714..5e2b26613 100644 --- a/packages/binding-parser/tsconfig.json +++ b/packages/binding-parser/tsconfig.json @@ -5,5 +5,34 @@ "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts", "src/**/*.json"], + "references": [ + { + "path": "../logger" + }, + { + "path": "../context" + }, + { + "path": "../logic-utils" + }, + { + "path": "../xml-views-completion" + }, + { + "path": "../xml-views-validation" + }, + { + "path": "../settings" + }, + { + "path": "../semantic-model-types" + }, + { + "path": "../../test-packages/framework" + }, + { + "path": "../../test-packages/test-utils" + } + ] } diff --git a/packages/binding/package.json b/packages/binding/package.json index f452596e2..13df667c6 100644 --- a/packages/binding/package.json +++ b/packages/binding/package.json @@ -16,18 +16,23 @@ "license": "Apache-2.0", "dependencies": { "@ui5-language-assistant/binding-parser": "workspace:*", - "@ui5-language-assistant/logger": "workspace:*", "@ui5-language-assistant/context": "workspace:*", + "@ui5-language-assistant/logger": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", - "@ui5-language-assistant/xml-views-completion": "workspace:*", - "@ui5-language-assistant/xml-views-validation": "workspace:*", "@ui5-language-assistant/settings": "workspace:*", + "@ui5-language-assistant/xml-views-validation": "workspace:*", + "@xml-tools/ast-position": "2.0.2", + "@xml-tools/content-assist": "3.1.7", "deep-freeze-strict": "1.1.1", - "lodash": "4.17.21" + "i18next": "19.0.2", + "lodash": "4.17.21", + "vscode-languageserver": "8.0.2", + "vscode-languageserver-textdocument": "^1.0.12", + "chevrotain": "7.0.1" }, "devDependencies": { - "@sap-ux/vocabularies-types": "0.10.14", "@types/lodash": "4.14.168", + "@types/deep-freeze-strict": "1.1.0", "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/test-framework": "workspace:*", "@ui5-language-assistant/test-utils": "workspace:*", @@ -38,8 +43,8 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/constant/package.json b/packages/constant/package.json index ae8688ea2..b9eb7c340 100644 --- a/packages/constant/package.json +++ b/packages/constant/package.json @@ -18,7 +18,7 @@ "scripts": { "ci": "npm-run-all clean compile lint", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "echo nothing to test", diff --git a/packages/constant/tsconfig.json b/packages/constant/tsconfig.json index 3057a3012..dbfe2a335 100644 --- a/packages/constant/tsconfig.json +++ b/packages/constant/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/packages/context/package.json b/packages/context/package.json index 4852e52c1..d992d4a34 100644 --- a/packages/context/package.json +++ b/packages/context/package.json @@ -18,20 +18,24 @@ "dependencies": { "@sap-ux/annotation-converter": "0.5.20", "@sap-ux/edmx-parser": "0.5.13", + "@sap-ux/project-access": "1.25.5", + "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/language-server": "workspace:^", "@ui5-language-assistant/logger": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", - "@ui5-language-assistant/settings": "workspace:*", - "@ui5-language-assistant/constant": "workspace:*", - "@sap-ux/project-access": "1.25.5", + "@ui5-language-assistant/semantic-model": "workspace:^", + "@xml-tools/ast": "5.0.0", + "@xml-tools/parser": "1.0.7", + "find-up": "^4.1.0", "fs-extra": "10.1.0", "globby": "11.1.0", "js-yaml": "4.1.0", "lodash": "4.17.21", + "node-fetch": "2.6.9", + "path-parse": "^1.0.7", "semver": "7.3.7", "vscode-languageserver": "8.0.2", - "vscode-uri": "2.1.2", - "@xml-tools/ast": "5.0.0", - "@xml-tools/parser": "1.0.7" + "vscode-uri": "2.1.2" }, "devDependencies": { "@sap-ux/vocabularies-types": "0.10.14", @@ -44,12 +48,13 @@ "@ui5-language-assistant/test-utils": "workspace:*", "rimraf": "3.0.2", "tmp-promise": "3.0.2", + "mock-fs": "^5.2.0", "proxyquire": "2.1.3" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/context/src/utils/ids-collector.ts b/packages/context/src/utils/ids-collector.ts index 48b0d18ec..e7a5e4641 100644 --- a/packages/context/src/utils/ids-collector.ts +++ b/packages/context/src/utils/ids-collector.ts @@ -25,8 +25,7 @@ export class IdsCollectorVisitor implements XMLAstVisitor { attrib.value !== "" && attrib.syntax.value !== undefined && attrib.parent.name !== null && - // @ts-expect-error - we already checked that xmlElement.name is not null - isPossibleCustomClass(attrib.parent) + isPossibleCustomClass(attrib.parent as any) ) { const existing = this.ids.get(attrib.value); const offsetRange = { diff --git a/packages/fe/package.json b/packages/fe/package.json index 4f76cef6b..042c2e0a3 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -18,17 +18,23 @@ "dependencies": { "@ui5-language-assistant/context": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/settings": "workspace:^", "@ui5-language-assistant/xml-views-completion": "workspace:*", "@ui5-language-assistant/xml-views-validation": "workspace:*", + "@xml-tools/content-assist": "3.1.7", + "assert-never": "1.2.1", + "chevrotain": "7.0.1", "deep-freeze-strict": "1.1.1", - "lodash": "4.17.21" + "i18next": "19.0.2", + "lodash": "4.17.21", + "vscode-languageserver-textdocument": "^1.0.12" }, "devDependencies": { "@sap-ux/vocabularies-types": "0.10.14", + "@types/deep-freeze-strict": "1.1.0", "@types/lodash": "4.14.168", "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/test-framework": "workspace:*", - "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/parser": "1.0.7", "vscode-languageserver-protocol": "3.17.2", @@ -36,8 +42,8 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 1370dd156..4bebc2f68 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -25,45 +25,50 @@ "node": ">=10.0.0" }, "dependencies": { - "@ui5-language-assistant/binding": "workspace:*", "@sap/swa-for-sapbas-vsx": "1.1.9", - "@ui5-language-assistant/logger": "workspace:*", + "@ui5-language-assistant/binding": "workspace:*", + "@ui5-language-assistant/constant": "workspace:*", "@ui5-language-assistant/context": "workspace:*", - "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/fe": "workspace:*", + "@ui5-language-assistant/language-server": "workspace:^", + "@ui5-language-assistant/logger": "workspace:*", + "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/semantic-model": "workspace:*", "@ui5-language-assistant/settings": "workspace:*", "@ui5-language-assistant/user-facing-text": "workspace:*", "@ui5-language-assistant/xml-views-completion": "workspace:*", + "@ui5-language-assistant/xml-views-definition": "workspace:*", "@ui5-language-assistant/xml-views-quick-fix": "workspace:*", "@ui5-language-assistant/xml-views-tooltip": "workspace:*", "@ui5-language-assistant/xml-views-validation": "workspace:*", - "@ui5-language-assistant/constant": "workspace:*", - "@ui5-language-assistant/xml-views-definition": "workspace:*", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "@xml-tools/parser": "1.0.7", "assert-never": "1.2.1", "fs-extra": "10.1.0", + "i18next": "19.0.2", + "jest-extended": "3.2.3", + "klaw-sync": "6.0.0", "lodash": "4.17.21", "vscode-languageserver": "8.0.2", "vscode-languageserver-textdocument": "1.0.1", "vscode-uri": "2.1.2" }, "devDependencies": { + "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:*", + "@ui5-language-assistant/binding-parser": "workspace:*", + "vscode-languageserver-types": "3.17.2", "@types/js-yaml": "4.0.5", "@types/node-fetch": "2.5.10", "@types/semver": "7.3.12", "@types/tmp": "0.2.0", - "@ui5-language-assistant/semantic-model-types": "workspace:*", - "@ui5-language-assistant/test-utils": "workspace:*", - "string-replace-loader": "3.1.0", - "vscode-languageserver-types": "3.17.2" + "string-replace-loader": "3.1.0" }, "scripts": { "ci": "npm-run-all clean compile lint coverage bundle", - "clean": "rimraf ./dist ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./dist ./lib ./coverage ", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/language-server/src/quick-fix.ts b/packages/language-server/src/quick-fix.ts index 737d0db34..adbc8e579 100644 --- a/packages/language-server/src/quick-fix.ts +++ b/packages/language-server/src/quick-fix.ts @@ -11,6 +11,7 @@ import { TextEdit, } from "vscode-languageserver-types"; import { + UI5XMLViewIssue, validateXMLView, validators, } from "@ui5-language-assistant/xml-views-validation"; @@ -125,7 +126,10 @@ function computeCodeActionsForQuickFixFileStableId(opts: { return []; } - const errorsOffset = map(nonStableIdFileIssues, (_) => _.offsetRange); + const errorsOffset = map( + nonStableIdFileIssues, + (_: UI5XMLViewIssue) => _.offsetRange + ); const nonStableIdFileIssuesInfo = computeQuickFixStableIdInfo( opts.context, errorsOffset, diff --git a/packages/language-server/tsconfig.json b/packages/language-server/tsconfig.json index 4371e9c96..d61da6fa6 100644 --- a/packages/language-server/tsconfig.json +++ b/packages/language-server/tsconfig.json @@ -10,6 +10,9 @@ { "path": "../binding" }, + { + "path": "../binding-parser" + }, { "path": "../logger" }, @@ -28,6 +31,9 @@ { "path": "../xml-views-completion" }, + { + "path": "../xml-views-definition" + }, { "path": "../xml-views-validation" }, diff --git a/packages/logger/package.json b/packages/logger/package.json index cf48467a2..ea7f5ef04 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -25,7 +25,7 @@ "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/logic-utils/package.json b/packages/logic-utils/package.json index ce100a6a3..2cef06c0a 100644 --- a/packages/logic-utils/package.json +++ b/packages/logic-utils/package.json @@ -36,7 +36,7 @@ "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/semantic-model-types/package.json b/packages/semantic-model-types/package.json index ceabecf46..93ccc8eb9 100644 --- a/packages/semantic-model-types/package.json +++ b/packages/semantic-model-types/package.json @@ -15,7 +15,7 @@ "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "echo \"nothing to clean\"", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "echo nothing to test", diff --git a/packages/semantic-model/package.json b/packages/semantic-model/package.json index dffc843a2..d1d58691d 100644 --- a/packages/semantic-model/package.json +++ b/packages/semantic-model/package.json @@ -18,6 +18,7 @@ "typings": "./api.d.ts", "dependencies": { "@ui5-language-assistant/semantic-model-types": "workspace:*", + "@ui5-language-assistant/semantic-model": "workspace:*", "@ui5-language-assistant/logger": "workspace:*", "@ui5-language-assistant/constant": "workspace:*", "ajv": "6.12.3", @@ -32,8 +33,8 @@ }, "scripts": { "ci": "npm-run-all clean generate-json-api compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/semantic-model/tsconfig.json b/packages/semantic-model/tsconfig.json index 566b858de..8b9e2f859 100644 --- a/packages/semantic-model/tsconfig.json +++ b/packages/semantic-model/tsconfig.json @@ -10,6 +10,9 @@ { "path": "../logger" }, + { + "path": "../constant" + }, { "path": "../semantic-model-types" }, diff --git a/packages/settings/package.json b/packages/settings/package.json index 77a2d776a..36d791569 100644 --- a/packages/settings/package.json +++ b/packages/settings/package.json @@ -16,12 +16,17 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "deep-freeze-strict": "1.1.1" + "deep-freeze-strict": "1.1.1", + "lodash": "4.17.21" + }, + "devDependencies": { + "@types/lodash": "4.14.168", + "@types/deep-freeze-strict": "1.1.0" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/user-facing-text/package.json b/packages/user-facing-text/package.json index cefc3864f..87ede5072 100644 --- a/packages/user-facing-text/package.json +++ b/packages/user-facing-text/package.json @@ -16,12 +16,12 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "deep-freeze-strict": "1.1.1" + "lodash": "4.17.21" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index e979f3803..2900cf5d0 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -9,11 +9,11 @@ "url": "https://github.com/SAP/ui5-language-assistant" }, "scripts": { - "ci": "node ./scripts/copy" + "ci": "node ./scripts/copy", + "clean": "rimraf ./dist ./lib ./coverage ./nyc_output *.vsix NOTICE LICENSE" }, "devDependencies": { - "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "workspace:*" + "fs-extra": "10.1.0" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index e667f0186..bb5f84713 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -143,8 +143,8 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage:* bundle package", - "clean": "rimraf ./dist ./lib ./coverage ./nyc_output *.vsix NOTICE LICENSE", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./dist ./lib ./coverage *.vsix NOTICE LICENSE", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test:integration": "node lib/test/run-integration-tests.js", @@ -156,24 +156,36 @@ }, "dependencies": { "@ui5-language-assistant/language-server": "workspace:*", - "vscode-languageclient": "8.0.2", + "prettier": "2.8.7", "@prettier/plugin-xml": "2.2.0", - "prettier": "2.8.7" + "vscode-languageclient": "8.0.2" }, "devDependencies": { "@types/lodash": "4.14.168", "@types/vscode": "1.47.0", - "@ui5-language-assistant/settings": "workspace:*", + "@ui5-language-assistant/binding-parser": "workspace:*", + "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/context": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", + "@ui5-language-assistant/settings": "workspace:*", + "@ui5-language-assistant/test-framework": "workspace:*", "@ui5-language-assistant/user-facing-text": "workspace:*", - "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/binding": "workspace:*", + "@vscode-logging/types": "0.1.4", + "@xml-tools/ast": "5.0.0", + "@xml-tools/parser": "1.0.7", + "axios": "1.6.1", + "chai": "4.2.0", + "fs-extra": "10.1.0", "lodash": "4.17.21", + "mock-fs": "^5.2.0", + "node-fetch": "2.6.9", "proxyquire": "2.1.3", - "vsce": "1.83.0", + "ts-node": "8.5.2", + "vscode-languageserver-types": "3.17.2", + "vscode-ui5-language-assistant": "workspace:^", + "vscode-uri": "2.1.2", "vscode-languageserver": "8.0.2", - "vscode-test": "1.6.1", - "@ui5-language-assistant/test-framework": "workspace:*", - "axios": "1.6.1", - "ts-node": "8.5.2" + "vscode-test": "1.6.1" } } diff --git a/packages/vscode-ui5-language-assistant/tsconfig.json b/packages/vscode-ui5-language-assistant/tsconfig.json index 10dab1afb..c431e07be 100644 --- a/packages/vscode-ui5-language-assistant/tsconfig.json +++ b/packages/vscode-ui5-language-assistant/tsconfig.json @@ -10,6 +10,9 @@ { "path": "../language-server" }, + { + "path": "../binding" + }, { "path": "../settings" }, @@ -17,7 +20,7 @@ "path": "../logic-utils" }, { - "path": "../../user-facing-text" + "path": "../user-facing-text" } ] } diff --git a/packages/xml-views-completion/package.json b/packages/xml-views-completion/package.json index 0e1350b7a..db764eef7 100644 --- a/packages/xml-views-completion/package.json +++ b/packages/xml-views-completion/package.json @@ -21,9 +21,13 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { + "@ui5-language-assistant/constant": "workspace:*", "@ui5-language-assistant/context": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", - "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/semantic-model-types": "workspace:^", + "@ui5-language-assistant/settings": "workspace:^", + "@ui5-language-assistant/test-utils": "workspace:^", + "@ui5-language-assistant/xml-views-completion": "workspace:^", "@xml-tools/ast": "5.0.0", "@xml-tools/common": "0.1.2", "@xml-tools/content-assist": "3.1.7", @@ -37,8 +41,8 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/xml-views-definition/package.json b/packages/xml-views-definition/package.json index 0a228241f..8a247604c 100644 --- a/packages/xml-views-definition/package.json +++ b/packages/xml-views-definition/package.json @@ -20,18 +20,18 @@ "@xml-tools/ast": "5.0.0", "vscode-languageserver-textdocument": "1.0.1", "vscode-uri": "2.1.2", - "@ui5-language-assistant/context": "4.0.29", + "@ui5-language-assistant/context": "workspace:*", "@xml-tools/parser": "1.0.7", - "@ui5-language-assistant/binding-parser": "1.0.7" + "@ui5-language-assistant/binding-parser": "workspace:*" }, "devDependencies": { "vscode-languageserver-types": "3.17.2", - "@ui5-language-assistant/test-framework": "4.0.12" + "@ui5-language-assistant/test-framework": "workspace:*" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/xml-views-definition/tsconfig.json b/packages/xml-views-definition/tsconfig.json index 7ecd7b544..7396fa714 100644 --- a/packages/xml-views-definition/tsconfig.json +++ b/packages/xml-views-definition/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "../../tsconfig.json", "compilerOptions": { "rootDir": ".", "outDir": "lib", diff --git a/packages/xml-views-quick-fix/package.json b/packages/xml-views-quick-fix/package.json index 7b87aecc7..1d463565c 100644 --- a/packages/xml-views-quick-fix/package.json +++ b/packages/xml-views-quick-fix/package.json @@ -34,8 +34,8 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/xml-views-tooltip/package.json b/packages/xml-views-tooltip/package.json index 2df5646c7..0d0114021 100644 --- a/packages/xml-views-tooltip/package.json +++ b/packages/xml-views-tooltip/package.json @@ -22,23 +22,26 @@ "node": ">=10.0.0" }, "dependencies": { + "@ui5-language-assistant/constant": "workspace:*", "@ui5-language-assistant/context": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/semantic-model": "workspace:*", "@ui5-language-assistant/semantic-model-types": "workspace:*", - "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/test-utils": "workspace:^", "@xml-tools/ast": "5.0.0", "@xml-tools/ast-position": "2.0.2", "@xml-tools/common": "0.1.2", + "@xml-tools/parser": "1.0.7", "lodash": "4.17.21" }, "devDependencies": { + "assert-never": "1.2.1", "vscode-languageserver": "8.0.2" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/packages/xml-views-validation/package.json b/packages/xml-views-validation/package.json index 365813905..038d12f56 100644 --- a/packages/xml-views-validation/package.json +++ b/packages/xml-views-validation/package.json @@ -21,28 +21,32 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { + "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/context": "workspace:*", "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/user-facing-text": "workspace:*", - "@ui5-language-assistant/context": "workspace:*", - "@ui5-language-assistant/constant": "workspace:*", - "vscode-languageserver-types": "3.17.2", + "@ui5-language-assistant/xml-views-validation": "workspace:^", "@xml-tools/ast": "5.0.0", "@xml-tools/common": "0.1.2", + "assert-never": "1.2.1", "deep-freeze-strict": "1.1.1", + "klaw-sync": "6.0.0", "lodash": "4.17.21", + "vscode-languageserver-types": "3.17.2", "vscode-uri": "2.1.2" }, "devDependencies": { "@ui5-language-assistant/semantic-model": "workspace:*", + "@ui5-language-assistant/test-framework": "workspace:*", "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/parser": "1.0.7", - "@ui5-language-assistant/test-framework": "workspace:*" + "@types/deep-freeze-strict": "1.1.0" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", "clean": "rimraf ./lib ./coverage ./nyc_output", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 60c55feb2..c5af714a7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,6 +7,10 @@ settings: importers: .: + dependencies: + '@sap/swa-for-sapbas-vsx': + specifier: ^2.0.7 + version: 2.0.7 devDependencies: '@changesets/cli': specifier: 2.26.0 @@ -17,12 +21,6 @@ importers: '@commitlint/config-conventional': specifier: 11.0.0 version: 11.0.0 - '@types/chai': - specifier: 4.2.14 - version: 4.2.14 - '@types/deep-equal-in-any-order': - specifier: 1.0.1 - version: 1.0.1 '@types/fs-extra': specifier: 9.0.11 version: 9.0.11 @@ -36,8 +34,11 @@ importers: specifier: 6.0.0 version: 6.0.0 '@types/lodash': - specifier: 4.14.166 - version: 4.14.166 + specifier: 4.14.168 + version: 4.14.168 + '@types/node': + specifier: 18.11.9 + version: 18.11.9 '@types/rimraf': specifier: 3.0.0 version: 3.0.0 @@ -47,12 +48,6 @@ importers: '@types/sinon-chai': specifier: 3.2.5 version: 3.2.5 - '@typescript-eslint/eslint-plugin': - specifier: 4.33.0 - version: 4.33.0(@typescript-eslint/parser@4.14.0)(eslint@7.18.0)(typescript@4.9.4) - '@typescript-eslint/parser': - specifier: 4.14.0 - version: 4.14.0(eslint@7.18.0)(typescript@4.9.4) chai: specifier: 4.2.0 version: 4.2.0 @@ -64,7 +59,7 @@ importers: version: 3.1.0 cz-conventional-changelog: specifier: 3.3.0 - version: 3.3.0(@types/node@20.11.5)(typescript@4.9.4) + version: 3.3.0(@types/node@18.11.9)(typescript@4.9.4) deep-equal-in-any-order: specifier: 1.0.28 version: 1.0.28 @@ -77,6 +72,9 @@ importers: eslint-config-prettier: specifier: 7.2.0 version: 7.2.0(eslint@7.18.0) + eslint-import-resolver-typescript: + specifier: 3.6.1 + version: 3.6.1(eslint-plugin-import@2.31.0)(eslint@7.18.0) eslint-plugin-eslint-comments: specifier: 3.2.0 version: 3.2.0(eslint@7.18.0) @@ -94,10 +92,10 @@ importers: version: 19.0.2 jest: specifier: 29.5.0 - version: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + version: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) jest-config: specifier: 29.5.0 - version: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + version: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) jest-environment-jsdom: specifier: ^29.5.0 version: 29.7.0 @@ -137,6 +135,12 @@ importers: npm-run-all: specifier: 4.1.5 version: 4.1.5 + nx: + specifier: ^19.7.4 + version: 19.8.4 + nyc: + specifier: 15.1.0 + version: 15.1.0 prettier: specifier: 2.8.7 version: 2.8.7 @@ -154,13 +158,16 @@ importers: version: 0.5.19 ts-jest: specifier: 29.0.5 - version: 29.0.5(@babel/core@7.23.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4) + version: 29.0.5(@babel/core@7.25.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4) ts-node: specifier: 8.5.2 version: 8.5.2(typescript@4.9.4) typescript: specifier: 4.9.4 version: 4.9.4 + update-ts-references: + specifier: 3.2.1 + version: 3.2.1(ts-jest@29.0.5) packages/binding: dependencies: @@ -179,22 +186,37 @@ importers: '@ui5-language-assistant/settings': specifier: workspace:* version: link:../settings - '@ui5-language-assistant/xml-views-completion': - specifier: workspace:* - version: link:../xml-views-completion '@ui5-language-assistant/xml-views-validation': specifier: workspace:* version: link:../xml-views-validation + '@xml-tools/ast-position': + specifier: 2.0.2 + version: 2.0.2 + '@xml-tools/content-assist': + specifier: 3.1.7 + version: 3.1.7 + chevrotain: + specifier: 7.0.1 + version: 7.0.1 deep-freeze-strict: specifier: 1.1.1 version: 1.1.1 + i18next: + specifier: 19.0.2 + version: 19.0.2 lodash: specifier: 4.17.21 version: 4.17.21 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 + vscode-languageserver-textdocument: + specifier: ^1.0.12 + version: 1.0.12 devDependencies: - '@sap-ux/vocabularies-types': - specifier: 0.10.14 - version: 0.10.14 + '@types/deep-freeze-strict': + specifier: 1.1.0 + version: 1.1.0 '@types/lodash': specifier: 4.14.168 version: 4.14.168 @@ -225,6 +247,9 @@ importers: chevrotain: specifier: 10.4.2 version: 10.4.2 + vscode-languageserver-protocol: + specifier: 3.17.2 + version: 3.17.2 vscode-languageserver-types: specifier: 3.17.2 version: 3.17.2 @@ -249,21 +274,27 @@ importers: '@ui5-language-assistant/constant': specifier: workspace:* version: link:../constant + '@ui5-language-assistant/language-server': + specifier: workspace:^ + version: link:../language-server '@ui5-language-assistant/logger': specifier: workspace:* version: link:../logger '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils - '@ui5-language-assistant/settings': - specifier: workspace:* - version: link:../settings + '@ui5-language-assistant/semantic-model': + specifier: workspace:^ + version: link:../semantic-model '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 '@xml-tools/parser': specifier: 1.0.7 version: 1.0.7 + find-up: + specifier: ^4.1.0 + version: 4.1.0 fs-extra: specifier: 10.1.0 version: 10.1.0 @@ -276,6 +307,12 @@ importers: lodash: specifier: 4.17.21 version: 4.17.21 + node-fetch: + specifier: 2.6.9 + version: 2.6.9 + path-parse: + specifier: ^1.0.7 + version: 1.0.7 semver: specifier: 7.3.7 version: 7.3.7 @@ -310,6 +347,9 @@ importers: '@ui5-language-assistant/test-utils': specifier: workspace:* version: link:../../test-packages/test-utils + mock-fs: + specifier: ^5.2.0 + version: 5.2.0 proxyquire: specifier: 2.1.3 version: 2.1.3 @@ -328,22 +368,43 @@ importers: '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils + '@ui5-language-assistant/settings': + specifier: workspace:^ + version: link:../settings '@ui5-language-assistant/xml-views-completion': specifier: workspace:* version: link:../xml-views-completion '@ui5-language-assistant/xml-views-validation': specifier: workspace:* version: link:../xml-views-validation + '@xml-tools/content-assist': + specifier: 3.1.7 + version: 3.1.7 + assert-never: + specifier: 1.2.1 + version: 1.2.1 + chevrotain: + specifier: 7.0.1 + version: 7.0.1 deep-freeze-strict: specifier: 1.1.1 version: 1.1.1 + i18next: + specifier: 19.0.2 + version: 19.0.2 lodash: specifier: 4.17.21 version: 4.17.21 + vscode-languageserver-textdocument: + specifier: ^1.0.12 + version: 1.0.12 devDependencies: '@sap-ux/vocabularies-types': specifier: 0.10.14 version: 0.10.14 + '@types/deep-freeze-strict': + specifier: 1.1.0 + version: 1.1.0 '@types/lodash': specifier: 4.14.168 version: 4.14.168 @@ -353,9 +414,6 @@ importers: '@ui5-language-assistant/test-framework': specifier: workspace:* version: link:../../test-packages/framework - '@ui5-language-assistant/test-utils': - specifier: workspace:* - version: link:../../test-packages/test-utils '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 @@ -386,6 +444,9 @@ importers: '@ui5-language-assistant/fe': specifier: workspace:* version: link:../fe + '@ui5-language-assistant/language-server': + specifier: workspace:^ + version: 'link:' '@ui5-language-assistant/logger': specifier: workspace:* version: link:../logger @@ -431,6 +492,15 @@ importers: fs-extra: specifier: 10.1.0 version: 10.1.0 + i18next: + specifier: 19.0.2 + version: 19.0.2 + jest-extended: + specifier: 3.2.3 + version: 3.2.3(jest@29.5.0) + klaw-sync: + specifier: 6.0.0 + version: 6.0.0 lodash: specifier: 4.17.21 version: 4.17.21 @@ -456,6 +526,9 @@ importers: '@types/tmp': specifier: 0.2.0 version: 0.2.0 + '@ui5-language-assistant/binding-parser': + specifier: workspace:* + version: link:../binding-parser '@ui5-language-assistant/semantic-model-types': specifier: workspace:* version: link:../semantic-model-types @@ -464,7 +537,7 @@ importers: version: link:../../test-packages/test-utils string-replace-loader: specifier: 3.1.0 - version: 3.1.0(webpack@5.89.0) + version: 3.1.0(webpack@5.95.0) vscode-languageserver-types: specifier: 3.17.2 version: 3.17.2 @@ -536,6 +609,9 @@ importers: '@ui5-language-assistant/logger': specifier: workspace:* version: link:../logger + '@ui5-language-assistant/semantic-model': + specifier: workspace:* + version: 'link:' '@ui5-language-assistant/semantic-model-types': specifier: workspace:* version: link:../semantic-model-types @@ -573,12 +649,22 @@ importers: deep-freeze-strict: specifier: 1.1.1 version: 1.1.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 + devDependencies: + '@types/deep-freeze-strict': + specifier: 1.1.0 + version: 1.1.0 + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 packages/user-facing-text: dependencies: - deep-freeze-strict: - specifier: 1.1.1 - version: 1.1.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 packages/vscode-ui5-language-assistant: dependencies: @@ -601,9 +687,18 @@ importers: '@types/vscode': specifier: 1.47.0 version: 1.47.0 + '@ui5-language-assistant/binding': + specifier: workspace:* + version: link:../binding + '@ui5-language-assistant/binding-parser': + specifier: workspace:* + version: link:../binding-parser '@ui5-language-assistant/constant': specifier: workspace:* version: link:../constant + '@ui5-language-assistant/context': + specifier: workspace:* + version: link:../context '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils @@ -616,36 +711,60 @@ importers: '@ui5-language-assistant/user-facing-text': specifier: workspace:* version: link:../user-facing-text + '@vscode-logging/types': + specifier: 0.1.4 + version: 0.1.4 + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 axios: specifier: 1.6.1 version: 1.6.1 + chai: + specifier: 4.2.0 + version: 4.2.0 + fs-extra: + specifier: 10.1.0 + version: 10.1.0 lodash: specifier: 4.17.21 version: 4.17.21 + mock-fs: + specifier: ^5.2.0 + version: 5.2.0 + node-fetch: + specifier: 2.6.9 + version: 2.6.9 proxyquire: specifier: 2.1.3 version: 2.1.3 ts-node: specifier: 8.5.2 version: 8.5.2(typescript@4.9.4) - vsce: - specifier: 1.83.0 - version: 1.83.0 vscode-languageserver: specifier: 8.0.2 version: 8.0.2 + vscode-languageserver-types: + specifier: 3.17.2 + version: 3.17.2 vscode-test: specifier: 1.6.1 version: 1.6.1 + vscode-ui5-language-assistant: + specifier: workspace:^ + version: 'link:' + vscode-uri: + specifier: 2.1.2 + version: 2.1.2 packages/vscode-ui5-language-assistant-bas-ext: devDependencies: fs-extra: specifier: 10.1.0 version: 10.1.0 - vscode-ui5-language-assistant: - specifier: workspace:* - version: link:../vscode-ui5-language-assistant packages/xml-views-completion: dependencies: @@ -658,6 +777,18 @@ importers: '@ui5-language-assistant/logic-utils': specifier: workspace:* version: link:../logic-utils + '@ui5-language-assistant/semantic-model-types': + specifier: workspace:^ + version: link:../semantic-model-types + '@ui5-language-assistant/settings': + specifier: workspace:^ + version: link:../settings + '@ui5-language-assistant/test-utils': + specifier: workspace:^ + version: link:../../test-packages/test-utils + '@ui5-language-assistant/xml-views-completion': + specifier: workspace:^ + version: 'link:' '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 @@ -687,10 +818,10 @@ importers: packages/xml-views-definition: dependencies: '@ui5-language-assistant/binding-parser': - specifier: 1.0.7 + specifier: workspace:* version: link:../binding-parser '@ui5-language-assistant/context': - specifier: 4.0.29 + specifier: workspace:* version: link:../context '@xml-tools/ast': specifier: 5.0.0 @@ -709,7 +840,7 @@ importers: version: 2.1.2 devDependencies: '@ui5-language-assistant/test-framework': - specifier: 4.0.12 + specifier: workspace:* version: link:../../test-packages/framework vscode-languageserver-types: specifier: 3.17.2 @@ -760,6 +891,9 @@ importers: '@ui5-language-assistant/semantic-model-types': specifier: workspace:* version: link:../semantic-model-types + '@ui5-language-assistant/test-utils': + specifier: workspace:^ + version: link:../../test-packages/test-utils '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 @@ -769,10 +903,16 @@ importers: '@xml-tools/common': specifier: 0.1.2 version: 0.1.2 + '@xml-tools/parser': + specifier: 1.0.7 + version: 1.0.7 lodash: specifier: 4.17.21 version: 4.17.21 devDependencies: + assert-never: + specifier: 1.2.1 + version: 1.2.1 vscode-languageserver: specifier: 8.0.2 version: 8.0.2 @@ -794,15 +934,24 @@ importers: '@ui5-language-assistant/user-facing-text': specifier: workspace:* version: link:../user-facing-text + '@ui5-language-assistant/xml-views-validation': + specifier: workspace:^ + version: 'link:' '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 '@xml-tools/common': specifier: 0.1.2 version: 0.1.2 + assert-never: + specifier: 1.2.1 + version: 1.2.1 deep-freeze-strict: specifier: 1.1.1 version: 1.1.1 + klaw-sync: + specifier: 6.0.0 + version: 6.0.0 lodash: specifier: 4.17.21 version: 4.17.21 @@ -813,6 +962,9 @@ importers: specifier: 2.1.2 version: 2.1.2 devDependencies: + '@types/deep-freeze-strict': + specifier: 1.1.0 + version: 1.1.0 '@ui5-language-assistant/semantic-model': specifier: workspace:* version: link:../semantic-model @@ -828,6 +980,15 @@ importers: test-packages/framework: dependencies: + '@typescript-eslint/eslint-plugin': + specifier: 4.33.0 + version: 4.33.0(@typescript-eslint/parser@4.14.0)(eslint@7.18.0)(typescript@4.9.4) + '@typescript-eslint/parser': + specifier: 4.14.0 + version: 4.14.0(eslint@7.18.0)(typescript@4.9.4) + '@ui5-language-assistant/test-framework': + specifier: workspace:^ + version: 'link:' '@xml-tools/ast': specifier: 5.0.0 version: 5.0.0 @@ -837,12 +998,24 @@ importers: chevrotain: specifier: 7.0.1 version: 7.0.1 + eslint-config-prettier: + specifier: 7.2.0 + version: 7.2.0(eslint@7.18.0) + eslint-plugin-eslint-comments: + specifier: 3.2.0 + version: 3.2.0(eslint@7.18.0) fs-extra: specifier: 10.1.0 version: 10.1.0 + i18next: + specifier: 19.0.2 + version: 19.0.2 lodash: specifier: 4.17.21 version: 4.17.21 + vscode-languageserver: + specifier: 8.0.2 + version: 8.0.2 vscode-languageserver-textdocument: specifier: ^1.0.7 version: 1.0.11 @@ -859,12 +1032,36 @@ importers: '@ui5-language-assistant/constant': specifier: workspace:* version: link:../../packages/constant + '@ui5-language-assistant/language-server': + specifier: workspace:* + version: link:../../packages/language-server '@ui5-language-assistant/semantic-model-types': specifier: 4.0.11 version: link:../../packages/semantic-model-types + '@ui5-language-assistant/test-utils': + specifier: workspace:* + version: 'link:' + '@ui5-language-assistant/xml-views-completion': + specifier: workspace:* + version: link:../../packages/xml-views-completion + '@xml-tools/ast': + specifier: 5.0.0 + version: 5.0.0 + chai: + specifier: 4.2.0 + version: 4.2.0 + deep-equal-in-any-order: + specifier: 1.0.28 + version: 1.0.28 + fs-extra: + specifier: 10.1.0 + version: 10.1.0 https-proxy-agent: specifier: 5.0.1 version: 5.0.1 + lodash: + specifier: 4.17.21 + version: 4.17.21 node-fetch: specifier: 2.6.9 version: 2.6.9 @@ -881,15 +1078,13 @@ packages: /@aashutoshrathi/word-wrap@1.2.6: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} - dev: true - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + /@ampproject/remapping@2.3.0: + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.22 - dev: true + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 /@apidevtools/json-schema-ref-parser@9.0.9: resolution: {integrity: sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==} @@ -900,305 +1095,380 @@ packages: js-yaml: 4.1.0 dev: true - /@babel/code-frame@7.23.5: - resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + /@azure/abort-controller@1.1.0: + resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} + engines: {node: '>=12.0.0'} + dependencies: + tslib: 2.7.0 + dev: false + + /@azure/abort-controller@2.1.2: + resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==} + engines: {node: '>=18.0.0'} + dependencies: + tslib: 2.7.0 + dev: false + + /@azure/core-auth@1.8.0: + resolution: {integrity: sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==} + engines: {node: '>=18.0.0'} + dependencies: + '@azure/abort-controller': 2.1.2 + '@azure/core-util': 1.2.0 + tslib: 2.7.0 + dev: false + + /@azure/core-rest-pipeline@1.10.1: + resolution: {integrity: sha512-Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==} + engines: {node: '>=14.0.0'} + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.8.0 + '@azure/core-tracing': 1.2.0 + '@azure/core-util': 1.2.0 + '@azure/logger': 1.1.4 + form-data: 4.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + tslib: 2.7.0 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@azure/core-tracing@1.2.0: + resolution: {integrity: sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==} + engines: {node: '>=18.0.0'} + dependencies: + tslib: 2.7.0 + dev: false + + /@azure/core-util@1.2.0: + resolution: {integrity: sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==} + engines: {node: '>=14.0.0'} + dependencies: + '@azure/abort-controller': 1.1.0 + tslib: 2.7.0 + dev: false + + /@azure/logger@1.1.4: + resolution: {integrity: sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==} + engines: {node: '>=18.0.0'} + dependencies: + tslib: 2.7.0 + dev: false + + /@azure/opentelemetry-instrumentation-azure-sdk@1.0.0-beta.6: + resolution: {integrity: sha512-JP6TJ7vDNX6r0gN2+EQBINTNqZ86frl1RAj5STtbLP1ClgIhcdXXb0hvq7CuEOv7InrroHMDoEYG80OQcWChug==} + engines: {node: '>=18.0.0'} + dependencies: + '@azure/core-tracing': 1.2.0 + '@azure/logger': 1.1.4 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + tslib: 2.7.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/code-frame@7.24.7: + resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - dev: true + '@babel/highlight': 7.24.7 + picocolors: 1.1.0 - /@babel/compat-data@7.23.5: - resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + /@babel/code-frame@7.25.7: + resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.25.7 + picocolors: 1.1.0 + + /@babel/compat-data@7.25.7: + resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==} engines: {node: '>=6.9.0'} - dev: true - /@babel/core@7.23.7: - resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==} + /@babel/core@7.25.7: + resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helpers': 7.23.8 - '@babel/parser': 7.23.6 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helpers': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/template': 7.25.7 + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/generator@7.23.6: - resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} + /@babel/generator@7.25.7: + resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.6 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.22 - jsesc: 2.5.2 - dev: true + '@babel/types': 7.25.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 - /@babel/helper-compilation-targets@7.23.6: - resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + /@babel/helper-compilation-targets@7.25.7: + resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.2 + '@babel/compat-data': 7.25.7 + '@babel/helper-validator-option': 7.25.7 + browserslist: 4.24.0 lru-cache: 5.1.1 semver: 6.3.1 - dev: true - - /@babel/helper-environment-visitor@7.22.20: - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-function-name@7.23.0: - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + /@babel/helper-module-imports@7.25.7: + resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 - dev: true - - /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - - /@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7): - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + /@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7): + resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-simple-access': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + /@babel/helper-plugin-utils@7.25.7: + resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + /@babel/helper-simple-access@7.25.7: + resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.6 - dev: true + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color - /@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + /@babel/helper-string-parser@7.25.7: + resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.6 - dev: true - /@babel/helper-string-parser@7.23.4: - resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + /@babel/helper-validator-identifier@7.24.7: + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + /@babel/helper-validator-identifier@7.25.7: + resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-validator-option@7.23.5: - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + /@babel/helper-validator-option@7.25.7: + resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helpers@7.23.8: - resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==} + /@babel/helpers@7.25.7: + resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.7 - '@babel/types': 7.23.6 - transitivePeerDependencies: - - supports-color - dev: true + '@babel/template': 7.25.7 + '@babel/types': 7.25.7 - /@babel/highlight@7.23.4: - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + /@babel/highlight@7.24.7: + resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 - dev: true + picocolors: 1.1.0 + + /@babel/highlight@7.25.7: + resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.25.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.1.0 - /@babel/parser@7.23.6: - resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} + /@babel/parser@7.25.7: + resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.23.6 - dev: true + '@babel/types': 7.25.7 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.7): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.7): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.7): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.7): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.7): + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + /@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.7): + resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.7): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.7): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7): - resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + /@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.7): + resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.7): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.7): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.7): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.7): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.7): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.7): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.7): + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.7): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7): - resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} + /@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.7): + resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + /@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7): + resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.7 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-simple-access': 7.25.7 + transitivePeerDependencies: + - supports-color dev: true /@babel/runtime@7.23.8: @@ -1206,47 +1476,39 @@ packages: engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.1 - dev: true - /@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} + /@babel/template@7.25.7: + resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - dev: true + '@babel/code-frame': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/types': 7.25.7 - /@babel/traverse@7.23.7: - resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==} + /@babel/traverse@7.25.7: + resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} engines: {node: '>=6.9.0'} dependencies: - '@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.6 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - debug: 4.3.4 + '@babel/code-frame': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/template': 7.25.7 + '@babel/types': 7.25.7 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/types@7.23.6: - resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} + /@babel/types@7.25.7: + resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-string-parser': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 to-fast-properties: 2.0.0 - dev: true /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - dev: true /@changesets/apply-release-plan@6.1.4: resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==} @@ -1314,7 +1576,7 @@ packages: meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.1.2 + preferred-pm: 3.1.4 resolve-from: 5.0.0 semver: 5.7.2 spawndamnit: 2.0.0 @@ -1471,7 +1733,7 @@ packages: '@commitlint/load': 11.0.0 '@commitlint/read': 11.0.0 chalk: 4.1.0 - core-js: 3.35.1 + core-js: 3.38.1 get-stdin: 8.0.0 lodash: 4.17.21 resolve-from: 5.0.0 @@ -1486,13 +1748,13 @@ packages: conventional-changelog-conventionalcommits: 4.6.3 dev: true - /@commitlint/config-validator@18.5.0: - resolution: {integrity: sha512-mDAA6WQPjh9Ida8ACdInDylBQcqeUD2gBHE+dQu+B3OIHiWiSSrq4F2+wg3nDU9EzfcQSwPwYL+QbMmiW5SmLA==} + /@commitlint/config-validator@19.5.0: + resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==} engines: {node: '>=v18'} requiresBuild: true dependencies: - '@commitlint/types': 18.4.4 - ajv: 8.12.0 + '@commitlint/types': 19.5.0 + ajv: 8.17.1 dev: true optional: true @@ -1509,8 +1771,8 @@ packages: engines: {node: '>=v10.22.0'} dev: true - /@commitlint/execute-rule@18.4.4: - resolution: {integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==} + /@commitlint/execute-rule@19.5.0: + resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==} engines: {node: '>=v18'} requiresBuild: true dev: true @@ -1555,22 +1817,21 @@ packages: resolve-from: 5.0.0 dev: true - /@commitlint/load@18.5.0(@types/node@20.11.5)(typescript@4.9.4): - resolution: {integrity: sha512-vpyGgk7rzbFsU01NVwPNC/WetHFP0EwSYnQ1R833SJFHkEo+cWvqoVlw/VoZwBMoI6sF5/lwEdKzFDr1DHJ6+A==} + /@commitlint/load@19.5.0(@types/node@18.11.9)(typescript@4.9.4): + resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==} engines: {node: '>=v18'} requiresBuild: true dependencies: - '@commitlint/config-validator': 18.5.0 - '@commitlint/execute-rule': 18.4.4 - '@commitlint/resolve-extends': 18.5.0 - '@commitlint/types': 18.4.4 - chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@4.9.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.5)(cosmiconfig@8.3.6)(typescript@4.9.4) + '@commitlint/config-validator': 19.5.0 + '@commitlint/execute-rule': 19.5.0 + '@commitlint/resolve-extends': 19.5.0 + '@commitlint/types': 19.5.0 + chalk: 5.3.0 + cosmiconfig: 9.0.0(typescript@4.9.4) + cosmiconfig-typescript-loader: 5.0.0(@types/node@18.11.9)(cosmiconfig@9.0.0)(typescript@4.9.4) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 - resolve-from: 5.0.0 transitivePeerDependencies: - '@types/node' - typescript @@ -1609,17 +1870,17 @@ packages: resolve-global: 1.0.0 dev: true - /@commitlint/resolve-extends@18.5.0: - resolution: {integrity: sha512-OxCYOMnlkOEEIkwTaRiFjHyuWBq962WBZQVHfMHej8tr3d+SfjznvqZhPmW8/SuqtfmGEiJPGWUNOxgwH+O0MA==} + /@commitlint/resolve-extends@19.5.0: + resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==} engines: {node: '>=v18'} requiresBuild: true dependencies: - '@commitlint/config-validator': 18.5.0 - '@commitlint/types': 18.4.4 - import-fresh: 3.3.0 + '@commitlint/config-validator': 19.5.0 + '@commitlint/types': 19.5.0 + global-directory: 4.0.1 + import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - resolve-global: 1.0.0 dev: true optional: true @@ -1650,12 +1911,13 @@ packages: engines: {node: '>=v10.22.0'} dev: true - /@commitlint/types@18.4.4: - resolution: {integrity: sha512-/FykLtodD8gKs3+VNkAUwofu4LBHankclj+I8fB2jTRvG6PV7k/OUt4P+VbM7ip853qS4F0g7Z6hLNa6JeMcAQ==} + /@commitlint/types@19.5.0: + resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==} engines: {node: '>=v18'} requiresBuild: true dependencies: - chalk: 4.1.2 + '@types/conventional-commits-parser': 5.0.0 + chalk: 5.3.0 dev: true optional: true @@ -1667,6 +1929,25 @@ packages: kuler: 2.0.0 dev: false + /@emnapi/core@1.3.0: + resolution: {integrity: sha512-9hRqVlhwqBqCoToZ3hFcNVqL+uyHV06Y47ax4UB8L6XgVRqYz7MFnfessojo6+5TK89pKwJnpophwjTMOeKI9Q==} + dependencies: + '@emnapi/wasi-threads': 1.0.1 + tslib: 2.7.0 + dev: true + + /@emnapi/runtime@1.3.0: + resolution: {integrity: sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==} + dependencies: + tslib: 2.7.0 + dev: true + + /@emnapi/wasi-threads@1.0.1: + resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==} + dependencies: + tslib: 2.7.0 + dev: true + /@esbuild/android-arm64@0.17.12: resolution: {integrity: sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==} engines: {node: '>=12'} @@ -1870,7 +2151,7 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.7 espree: 7.3.1 globals: 12.4.0 ignore: 4.0.6 @@ -1881,6 +2162,50 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + + /@formatjs/cli@2.15.0(ts-jest@29.0.5): + resolution: {integrity: sha512-Hv7Z3xeGcgTpn1jA1/x7tc9UYbF9Udn/77xRf7E22Vn1mGJM/DftVqnpgLeNpd0d3xSftYw+rhaShNO19BsT6A==} + hasBin: true + dependencies: + '@formatjs/ts-transformer': 2.13.0(ts-jest@29.0.5) + '@types/json-stable-stringify': 1.0.36 + '@types/lodash': 4.14.168 + '@types/loud-rejection': 2.0.0 + '@types/node': 14.18.63 + '@vue/compiler-core': 3.5.11 + '@vue/compiler-sfc': 3.5.11 + chalk: 4.1.2 + commander: 6.2.1 + fast-glob: 3.3.2 + fs-extra: 9.1.0 + intl-messageformat-parser: 6.1.2 + json-stable-stringify: 1.1.1 + lodash: 4.17.21 + loud-rejection: 2.2.0 + tslib: 2.7.0 + typescript: 4.9.4 + transitivePeerDependencies: + - ts-jest + dev: true + + /@formatjs/ecma402-abstract@1.5.0: + resolution: {integrity: sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==} + dependencies: + tslib: 2.7.0 + dev: true + + /@formatjs/ts-transformer@2.13.0(ts-jest@29.0.5): + resolution: {integrity: sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==} + peerDependencies: + ts-jest: ^26.4.0 + peerDependenciesMeta: + ts-jest: + optional: true + dependencies: + intl-messageformat-parser: 6.1.2 + ts-jest: 29.0.5(@babel/core@7.25.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4) + tslib: 2.7.0 + typescript: 4.9.4 dev: true /@gar/promisify@1.1.3: @@ -1913,24 +2238,21 @@ packages: get-package-type: 0.1.0 js-yaml: 3.14.1 resolve-from: 5.0.0 - dev: true /@istanbuljs/schema@0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - dev: true /@jest/console@29.7.0: resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - dev: true /@jest/core@29.7.0(ts-node@8.5.2): resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} @@ -1946,14 +2268,14 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-config: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -1973,7 +2295,6 @@ packages: - babel-plugin-macros - supports-color - ts-node - dev: true /@jest/environment@29.7.0: resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} @@ -1981,16 +2302,14 @@ packages: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-mock: 29.7.0 - dev: true /@jest/expect-utils@29.7.0: resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 - dev: true /@jest/expect@29.7.0: resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} @@ -2000,7 +2319,6 @@ packages: jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - dev: true /@jest/fake-timers@29.7.0: resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} @@ -2008,11 +2326,10 @@ packages: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 - dev: true /@jest/globals@29.7.0: resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} @@ -2024,7 +2341,6 @@ packages: jest-mock: 29.7.0 transitivePeerDependencies: - supports-color - dev: true /@jest/reporters@29.7.0: resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} @@ -2040,44 +2356,41 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.22 - '@types/node': 20.11.5 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 18.11.9 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 glob: 7.1.6 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.1 + istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.6 + istanbul-reports: 3.1.7 jest-message-util: 29.7.0 jest-util: 29.7.0 jest-worker: 29.7.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.2.0 + v8-to-istanbul: 9.3.0 transitivePeerDependencies: - supports-color - dev: true /@jest/schemas@29.6.3: resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.27.8 - dev: true /@jest/source-map@29.6.3: resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.22 + '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - dev: true /@jest/test-result@29.7.0: resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} @@ -2087,7 +2400,6 @@ packages: '@jest/types': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - dev: true /@jest/test-sequencer@29.7.0: resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} @@ -2097,15 +2409,14 @@ packages: graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 - dev: true /@jest/transform@29.7.0: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.25.7 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.22 + '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -2120,7 +2431,6 @@ packages: write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color - dev: true /@jest/types@25.5.0: resolution: {integrity: sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==} @@ -2139,47 +2449,41 @@ packages: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.11.5 - '@types/yargs': 17.0.32 + '@types/node': 18.11.9 + '@types/yargs': 17.0.33 chalk: 4.1.2 - dev: true - /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + /@jridgewell/gen-mapping@0.3.5: + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.22 - dev: true + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + /@jridgewell/resolve-uri@3.1.2: + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - dev: true - /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + /@jridgewell/set-array@1.2.1: + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} engines: {node: '>=6.0.0'} - dev: true - /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + /@jridgewell/source-map@0.3.6: + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.22 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 dev: true - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - dev: true + /@jridgewell/sourcemap-codec@1.5.0: + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - /@jridgewell/trace-mapping@0.3.22: - resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} + /@jridgewell/trace-mapping@0.3.25: + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 /@jsdevtools/ono@7.1.3: resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} @@ -2188,7 +2492,7 @@ packages: /@kwsites/file-exists@1.1.1: resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -2234,7 +2538,7 @@ packages: has-unicode: 2.0.1 ini: 1.3.8 init-package-json: 5.0.0 - inquirer: 8.2.6 + inquirer: 8.2.5 is-ci: 3.0.1 is-stream: 2.0.0 js-yaml: 4.1.0 @@ -2305,6 +2609,18 @@ packages: read-yaml-file: 1.1.0 dev: true + /@microsoft/applicationinsights-web-snippet@1.2.1: + resolution: {integrity: sha512-+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==} + dev: false + + /@napi-rs/wasm-runtime@0.2.4: + resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} + dependencies: + '@emnapi/core': 1.3.0 + '@emnapi/runtime': 1.3.0 + '@tybys/wasm-util': 0.9.0 + dev: true + /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -2331,8 +2647,8 @@ packages: semver: 7.3.7 dev: true - /@npmcli/fs@3.1.0: - resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} + /@npmcli/fs@3.1.1: + resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: semver: 7.3.7 @@ -2354,12 +2670,12 @@ packages: - bluebird dev: true - /@npmcli/installed-package-contents@2.0.2: - resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==} + /@npmcli/installed-package-contents@2.1.0: + resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: - npm-bundled: 3.0.0 + npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 dev: true @@ -2411,7 +2727,19 @@ packages: hasBin: true dependencies: nx: 16.10.0 - tslib: 2.6.2 + tslib: 2.7.0 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: true + + /@nrwl/tao@19.8.4: + resolution: {integrity: sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ==} + hasBin: true + dependencies: + nx: 19.8.4 + tslib: 2.7.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -2430,7 +2758,7 @@ packages: nx: 16.10.0 semver: 7.5.3 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.7.0 dev: true /@nx/nx-darwin-arm64@16.10.0: @@ -2442,6 +2770,15 @@ packages: dev: true optional: true + /@nx/nx-darwin-arm64@19.8.4: + resolution: {integrity: sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@nx/nx-darwin-x64@16.10.0: resolution: {integrity: sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==} engines: {node: '>= 10'} @@ -2451,6 +2788,15 @@ packages: dev: true optional: true + /@nx/nx-darwin-x64@19.8.4: + resolution: {integrity: sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@nx/nx-freebsd-x64@16.10.0: resolution: {integrity: sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==} engines: {node: '>= 10'} @@ -2460,6 +2806,15 @@ packages: dev: true optional: true + /@nx/nx-freebsd-x64@19.8.4: + resolution: {integrity: sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-arm-gnueabihf@16.10.0: resolution: {integrity: sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==} engines: {node: '>= 10'} @@ -2469,6 +2824,15 @@ packages: dev: true optional: true + /@nx/nx-linux-arm-gnueabihf@19.8.4: + resolution: {integrity: sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-arm64-gnu@16.10.0: resolution: {integrity: sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==} engines: {node: '>= 10'} @@ -2478,6 +2842,15 @@ packages: dev: true optional: true + /@nx/nx-linux-arm64-gnu@19.8.4: + resolution: {integrity: sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-arm64-musl@16.10.0: resolution: {integrity: sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==} engines: {node: '>= 10'} @@ -2487,6 +2860,15 @@ packages: dev: true optional: true + /@nx/nx-linux-arm64-musl@19.8.4: + resolution: {integrity: sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-x64-gnu@16.10.0: resolution: {integrity: sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==} engines: {node: '>= 10'} @@ -2496,6 +2878,15 @@ packages: dev: true optional: true + /@nx/nx-linux-x64-gnu@19.8.4: + resolution: {integrity: sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-linux-x64-musl@16.10.0: resolution: {integrity: sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==} engines: {node: '>= 10'} @@ -2505,6 +2896,15 @@ packages: dev: true optional: true + /@nx/nx-linux-x64-musl@19.8.4: + resolution: {integrity: sha512-JB4tAuZBCF0yqSnKF3pHXa0b7LA3ebi3Bw08QmMr//ON4aU+eXURGBuj9XvULD2prY+gpBrvf+MsG1XJAHL6Zg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@nx/nx-win32-arm64-msvc@16.10.0: resolution: {integrity: sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==} engines: {node: '>= 10'} @@ -2514,6 +2914,15 @@ packages: dev: true optional: true + /@nx/nx-win32-arm64-msvc@19.8.4: + resolution: {integrity: sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@nx/nx-win32-x64-msvc@16.10.0: resolution: {integrity: sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==} engines: {node: '>= 10'} @@ -2523,6 +2932,15 @@ packages: dev: true optional: true + /@nx/nx-win32-x64-msvc@19.8.4: + resolution: {integrity: sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@octokit/auth-token@3.0.4: resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} engines: {node: '>= 14'} @@ -2651,13 +3069,80 @@ packages: '@octokit/openapi-types': 18.1.1 dev: true + /@opentelemetry/api-logs@0.52.1: + resolution: {integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==} + engines: {node: '>=14'} + dependencies: + '@opentelemetry/api': 1.9.0 + dev: false + + /@opentelemetry/api@1.9.0: + resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} + engines: {node: '>=8.0.0'} + dev: false + + /@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0): + resolution: {integrity: sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/semantic-conventions': 1.27.0 + dev: false + + /@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0): + resolution: {integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.52.1 + '@types/shimmer': 1.2.0 + import-in-the-middle: 1.11.2 + require-in-the-middle: 7.4.0 + semver: 7.5.4 + shimmer: 1.2.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@opentelemetry/resources@1.26.0(@opentelemetry/api@1.9.0): + resolution: {integrity: sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + dev: false + + /@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0): + resolution: {integrity: sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + dev: false + + /@opentelemetry/semantic-conventions@1.27.0: + resolution: {integrity: sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==} + engines: {node: '>=14'} + dev: false + /@parcel/watcher@2.0.4: resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} engines: {node: '>= 10.0.0'} requiresBuild: true dependencies: node-addon-api: 3.2.1 - node-gyp-build: 4.8.0 + node-gyp-build: 4.8.2 dev: true /@pkgjs/parseargs@0.11.0: @@ -2674,6 +3159,10 @@ packages: prettier: 2.8.7 dev: false + /@rtsao/scc@1.1.0: + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + dev: true + /@sap-ux/annotation-converter@0.5.20: resolution: {integrity: sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==} dev: false @@ -2729,6 +3218,21 @@ packages: yaml: 2.2.2 dev: false + /@sap/bas-sdk@3.8.9: + resolution: {integrity: sha512-ycYttnSTlEPjDrb0svSv0jBgqEvoekD4bNB4IxuKCu5OKk5FycwsOTgufU8CXYf1ag23wTlurN+N7c4Po6PcJQ==} + dependencies: + axios: 1.7.4 + cross-spawn: 7.0.3 + fs-extra: 11.2.0 + lodash: 4.17.21 + url-join: 4.0.1 + ws: 8.17.1 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + dev: false + /@sap/swa-for-sapbas-vsx@1.1.9: resolution: {integrity: sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==} deprecated: This version is obsolete. Please upgrade to version 1.1.13 or above. @@ -2738,6 +3242,20 @@ packages: matomo-tracker: 2.2.2 dev: false + /@sap/swa-for-sapbas-vsx@2.0.7: + resolution: {integrity: sha512-EPV6cj5AdCSUp9FLHqKw+nochB5tOjzV840+0pQ1ebEPdzqaQ+e3RjFjqfIrBEZn5yD3EiLPR/3qYTDBh1MarQ==} + dependencies: + '@sap/bas-sdk': 3.8.9 + applicationinsights: 2.9.2 + lodash: 4.17.21 + transitivePeerDependencies: + - applicationinsights-native-metrics + - bufferutil + - debug + - supports-color + - utf-8-validate + dev: false + /@sigstore/bundle@1.1.0: resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -2773,19 +3291,16 @@ packages: /@sinclair/typebox@0.27.8: resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - dev: true /@sinonjs/commons@3.0.1: resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} dependencies: type-detect: 4.0.8 - dev: true /@sinonjs/fake-timers@10.3.0: resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} dependencies: '@sinonjs/commons': 3.0.1 - dev: true /@tootallnate/once@1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} @@ -2795,7 +3310,6 @@ packages: /@tootallnate/once@2.0.0: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} - dev: true /@tufjs/canonical-json@1.0.0: resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} @@ -2810,83 +3324,74 @@ packages: minimatch: 9.0.3 dev: true + /@tybys/wasm-util@0.9.0: + resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} + dependencies: + tslib: 2.7.0 + dev: true + /@types/babel__core@7.20.5: resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 + '@babel/parser': 7.25.7 + '@babel/types': 7.25.7 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.5 - dev: true + '@types/babel__traverse': 7.20.6 /@types/babel__generator@7.6.8: resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} dependencies: - '@babel/types': 7.23.6 - dev: true + '@babel/types': 7.25.7 /@types/babel__template@7.4.4: resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - dev: true + '@babel/parser': 7.25.7 + '@babel/types': 7.25.7 - /@types/babel__traverse@7.20.5: - resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + /@types/babel__traverse@7.20.6: + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} dependencies: - '@babel/types': 7.23.6 - dev: true + '@babel/types': 7.25.7 - /@types/chai@4.2.14: - resolution: {integrity: sha512-G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ==} + /@types/chai@5.0.0: + resolution: {integrity: sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==} dev: true - /@types/deep-equal-in-any-order@1.0.1: - resolution: {integrity: sha512-hUWUUE53WjKfcCncSmWmNXVNNT+0Iz7gYFnov3zdCXrX3Thxp1Cnmfd5LwWOeCVUV5LhpiFgS05vaAG72doo9w==} + /@types/conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} + requiresBuild: true + dependencies: + '@types/node': 18.11.9 dev: true + optional: true /@types/deep-freeze-strict@1.1.0: resolution: {integrity: sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==} dev: true - /@types/eslint-scope@3.7.7: - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - dependencies: - '@types/eslint': 8.56.2 - '@types/estree': 1.0.5 - dev: true - - /@types/eslint@8.56.2: - resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==} - dependencies: - '@types/estree': 1.0.5 - '@types/json-schema': 7.0.15 - dev: true - - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + /@types/estree@1.0.6: + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} dev: true /@types/fs-extra@9.0.11: resolution: {integrity: sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==} dependencies: - '@types/node': 20.11.5 + '@types/node': 18.11.9 dev: true /@types/glob@8.1.0: resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.11.5 + '@types/node': 18.11.9 dev: true /@types/graceful-fs@4.1.9: resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: - '@types/node': 20.11.5 - dev: true + '@types/node': 18.11.9 /@types/is-ci@3.0.4: resolution: {integrity: sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==} @@ -2896,13 +3401,11 @@ packages: /@types/istanbul-lib-coverage@2.0.6: resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - dev: true /@types/istanbul-lib-report@3.0.3: resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} dependencies: '@types/istanbul-lib-coverage': 2.0.6 - dev: true /@types/istanbul-reports@1.1.2: resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} @@ -2915,7 +3418,6 @@ packages: resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} dependencies: '@types/istanbul-lib-report': 3.0.3 - dev: true /@types/jest-specific-snapshot@0.5.5: resolution: {integrity: sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==} @@ -2937,29 +3439,39 @@ packages: /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: - '@types/node': 20.11.5 + '@types/node': 18.11.9 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 dev: true /@types/json-schema@7.0.15: resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + /@types/json-stable-stringify@1.0.36: + resolution: {integrity: sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==} + dev: true + + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true /@types/klaw-sync@6.0.0: resolution: {integrity: sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==} dependencies: - '@types/node': 20.11.5 - dev: true - - /@types/lodash@4.14.166: - resolution: {integrity: sha512-A3YT/c1oTlyvvW/GQqG86EyqWNrT/tisOIh2mW3YCgcx71TNjiTZA3zYZWA5BCmtsOTXjhliy4c4yEkErw6njA==} + '@types/node': 18.11.9 dev: true /@types/lodash@4.14.168: resolution: {integrity: sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==} dev: true + /@types/loud-rejection@2.0.0: + resolution: {integrity: sha512-oTHISsIybJGoh3b3Ay/10csbAd2k0su7G7DGrE1QWciC+IdydPm0WMw1+Gr9YMYjPiJ5poB3g5Ev73IlLoavLw==} + deprecated: This is a stub types definition. loud-rejection provides its own type definitions, so you do not need this installed. + dependencies: + loud-rejection: 2.2.0 + dev: true + /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} @@ -2974,7 +3486,7 @@ packages: /@types/node-fetch@2.5.10: resolution: {integrity: sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==} dependencies: - '@types/node': 20.11.5 + '@types/node': 18.11.9 form-data: 3.0.1 dev: true @@ -2982,12 +3494,13 @@ packages: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node@20.11.5: - resolution: {integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==} - dependencies: - undici-types: 5.26.5 + /@types/node@14.18.63: + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} dev: true + /@types/node@18.11.9: + resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} + /@types/normalize-package-data@2.4.4: resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} dev: true @@ -3008,7 +3521,7 @@ packages: resolution: {integrity: sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==} dependencies: '@types/glob': 8.1.0 - '@types/node': 20.11.5 + '@types/node': 18.11.9 dev: true /@types/semver@6.2.7: @@ -3019,10 +3532,14 @@ packages: resolution: {integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==} dev: true + /@types/shimmer@1.2.0: + resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} + dev: false + /@types/sinon-chai@3.2.5: resolution: {integrity: sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==} dependencies: - '@types/chai': 4.2.14 + '@types/chai': 5.0.0 '@types/sinon': 9.0.10 dev: true @@ -3042,7 +3559,6 @@ packages: /@types/stack-utils@2.0.3: resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - dev: true /@types/tmp@0.2.0: resolution: {integrity: sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==} @@ -3062,7 +3578,6 @@ packages: /@types/yargs-parser@21.0.3: resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - dev: true /@types/yargs@15.0.19: resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} @@ -3070,11 +3585,10 @@ packages: '@types/yargs-parser': 21.0.3 dev: true - /@types/yargs@17.0.32: - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + /@types/yargs@17.0.33: + resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} dependencies: '@types/yargs-parser': 21.0.3 - dev: true /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.14.0)(eslint@7.18.0)(typescript@4.9.4): resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} @@ -3090,7 +3604,7 @@ packages: '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.18.0)(typescript@4.9.4) '@typescript-eslint/parser': 4.14.0(eslint@7.18.0)(typescript@4.9.4) '@typescript-eslint/scope-manager': 4.33.0 - debug: 4.3.4 + debug: 4.3.7 eslint: 7.18.0 functional-red-black-tree: 1.0.1 ignore: 5.3.0 @@ -3100,7 +3614,7 @@ packages: typescript: 4.9.4 transitivePeerDependencies: - supports-color - dev: true + dev: false /@typescript-eslint/experimental-utils@4.33.0(eslint@7.18.0)(typescript@4.9.4): resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} @@ -3118,7 +3632,7 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true + dev: false /@typescript-eslint/parser@4.14.0(eslint@7.18.0)(typescript@4.9.4): resolution: {integrity: sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==} @@ -3133,12 +3647,12 @@ packages: '@typescript-eslint/scope-manager': 4.14.0 '@typescript-eslint/types': 4.14.0 '@typescript-eslint/typescript-estree': 4.14.0(typescript@4.9.4) - debug: 4.3.4 + debug: 4.3.7 eslint: 7.18.0 typescript: 4.9.4 transitivePeerDependencies: - supports-color - dev: true + dev: false /@typescript-eslint/scope-manager@4.14.0: resolution: {integrity: sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q==} @@ -3146,7 +3660,7 @@ packages: dependencies: '@typescript-eslint/types': 4.14.0 '@typescript-eslint/visitor-keys': 4.14.0 - dev: true + dev: false /@typescript-eslint/scope-manager@4.33.0: resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} @@ -3154,17 +3668,17 @@ packages: dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - dev: true + dev: false /@typescript-eslint/types@4.14.0: resolution: {integrity: sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: true + dev: false /@typescript-eslint/types@4.33.0: resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: true + dev: false /@typescript-eslint/typescript-estree@4.14.0(typescript@4.9.4): resolution: {integrity: sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==} @@ -3177,7 +3691,7 @@ packages: dependencies: '@typescript-eslint/types': 4.14.0 '@typescript-eslint/visitor-keys': 4.14.0 - debug: 4.3.4 + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 lodash: 4.17.21 @@ -3186,7 +3700,7 @@ packages: typescript: 4.9.4 transitivePeerDependencies: - supports-color - dev: true + dev: false /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.4): resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} @@ -3199,7 +3713,7 @@ packages: dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.4 + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 @@ -3207,7 +3721,7 @@ packages: typescript: 4.9.4 transitivePeerDependencies: - supports-color - dev: true + dev: false /@typescript-eslint/visitor-keys@4.14.0: resolution: {integrity: sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA==} @@ -3215,7 +3729,7 @@ packages: dependencies: '@typescript-eslint/types': 4.14.0 eslint-visitor-keys: 2.1.0 - dev: true + dev: false /@typescript-eslint/visitor-keys@4.33.0: resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} @@ -3223,7 +3737,7 @@ packages: dependencies: '@typescript-eslint/types': 4.33.0 eslint-visitor-keys: 2.1.0 - dev: true + dev: false /@vscode-logging/logger@1.2.2: resolution: {integrity: sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA==} @@ -3244,8 +3758,50 @@ packages: /@vscode-logging/types@0.1.4: resolution: {integrity: sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==} - /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + /@vue/compiler-core@3.5.11: + resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==} + dependencies: + '@babel/parser': 7.25.7 + '@vue/shared': 3.5.11 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + dev: true + + /@vue/compiler-dom@3.5.11: + resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==} + dependencies: + '@vue/compiler-core': 3.5.11 + '@vue/shared': 3.5.11 + dev: true + + /@vue/compiler-sfc@3.5.11: + resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==} + dependencies: + '@babel/parser': 7.25.7 + '@vue/compiler-core': 3.5.11 + '@vue/compiler-dom': 3.5.11 + '@vue/compiler-ssr': 3.5.11 + '@vue/shared': 3.5.11 + estree-walker: 2.0.2 + magic-string: 0.30.11 + postcss: 8.4.47 + source-map-js: 1.2.1 + dev: true + + /@vue/compiler-ssr@3.5.11: + resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==} + dependencies: + '@vue/compiler-dom': 3.5.11 + '@vue/shared': 3.5.11 + dev: true + + /@vue/shared@3.5.11: + resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==} + dev: true + + /@webassemblyjs/ast@1.12.1: + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -3259,8 +3815,8 @@ packages: resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} dev: true - /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + /@webassemblyjs/helper-buffer@1.12.1: + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} dev: true /@webassemblyjs/helper-numbers@1.11.6: @@ -3275,13 +3831,13 @@ packages: resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} dev: true - /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + /@webassemblyjs/helper-wasm-section@1.12.1: + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-gen': 1.12.1 dev: true /@webassemblyjs/ieee754@1.11.6: @@ -3300,42 +3856,42 @@ packages: resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} dev: true - /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + /@webassemblyjs/wasm-edit@1.12.1: + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 '@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/helper-wasm-section': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-opt': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + '@webassemblyjs/wast-printer': 1.12.1 dev: true - /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + /@webassemblyjs/wasm-gen@1.12.1: + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} dependencies: - '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/ieee754': 1.11.6 '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 dev: true - /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + /@webassemblyjs/wasm-opt@1.12.1: + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 dev: true - /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + /@webassemblyjs/wasm-parser@1.12.1: + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} dependencies: - '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-api-error': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/ieee754': 1.11.6 @@ -3343,10 +3899,10 @@ packages: '@webassemblyjs/utf8': 1.11.6 dev: true - /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + /@webassemblyjs/wast-printer@1.12.1: + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} dependencies: - '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 dev: true @@ -3404,7 +3960,7 @@ packages: engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 - tslib: 2.6.2 + tslib: 2.7.0 dev: true /@zkochan/js-yaml@0.0.6: @@ -3414,6 +3970,13 @@ packages: argparse: 2.0.1 dev: true + /@zkochan/js-yaml@0.0.7: + resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -3434,17 +3997,16 @@ packages: /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 8.11.3 - acorn-walk: 8.3.2 + acorn: 8.12.1 + acorn-walk: 8.3.4 dev: true - /acorn-import-assertions@1.9.0(acorn@8.11.3): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + /acorn-import-attributes@1.9.5(acorn@8.12.1): + resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.11.3 - dev: true + acorn: 8.12.1 /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -3452,24 +4014,23 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 7.4.1 - dev: true - /acorn-walk@8.3.2: - resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + /acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} engines: {node: '>=0.4.0'} + dependencies: + acorn: 8.12.1 dev: true /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true - dev: true - /acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + /acorn@8.12.1: + resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} engines: {node: '>=0.4.0'} hasBin: true - dev: true /add-stream@1.0.0: resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} @@ -3479,7 +4040,7 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -3521,36 +4082,32 @@ packages: fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - dev: true - /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + /ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + requiresBuild: true dependencies: fast-deep-equal: 3.1.3 + fast-uri: 3.0.1 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - uri-js: 4.4.1 - dev: true /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} - dev: true /ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} dependencies: type-fest: 0.21.3 - dev: true /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - dev: true - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + /ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} engines: {node: '>=12'} dev: true @@ -3559,7 +4116,6 @@ packages: engines: {node: '>=4'} dependencies: color-convert: 1.9.3 - dev: true /ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} @@ -3570,7 +4126,6 @@ packages: /ansi-styles@5.2.0: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} - dev: true /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} @@ -3587,15 +4142,52 @@ packages: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 + + /append-transform@2.0.0: + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} + dependencies: + default-require-extensions: 3.0.1 dev: true + /applicationinsights@2.9.2: + resolution: {integrity: sha512-wlDiD7v0BQNM8oNzsf9C836R5ze25u+CuCEZsbA5xMIXYYBxkqkWE/mo9GFJM7rsKaiGqpxEwWmePHKD2Lwy2w==} + engines: {node: '>=8.0.0'} + peerDependencies: + applicationinsights-native-metrics: '*' + peerDependenciesMeta: + applicationinsights-native-metrics: + optional: true + dependencies: + '@azure/core-auth': 1.8.0 + '@azure/core-rest-pipeline': 1.10.1 + '@azure/core-util': 1.2.0 + '@azure/opentelemetry-instrumentation-azure-sdk': 1.0.0-beta.6 + '@microsoft/applicationinsights-web-snippet': 1.2.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + cls-hooked: 4.2.2 + continuation-local-storage: 3.2.1 + diagnostic-channel: 1.1.1 + diagnostic-channel-publishers: 1.0.8(diagnostic-channel@1.1.1) + transitivePeerDependencies: + - supports-color + dev: false + /aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} dev: true + /archy@1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + dev: true + /are-we-there-yet@3.0.1: resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: delegates: 1.0.0 readable-stream: 3.6.2 @@ -3603,57 +4195,100 @@ packages: /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 - dev: true /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + /array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 + call-bind: 1.0.7 + is-array-buffer: 3.0.4 dev: true /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} + /array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + dev: true + /array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true + /array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + get-intrinsic: 1.2.4 + is-string: 1.0.7 + dev: true + + /array-timsort@1.0.3: + resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} + dev: true + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} + /array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-shim-unscopables: 1.0.2 + dev: true + /array.prototype.flat@1.3.2: resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 dev: true - /arraybuffer.prototype.slice@1.0.2: - resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + /arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} engines: {node: '>= 0.4'} dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 - is-shared-array-buffer: 1.0.2 + es-abstract: 1.23.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 dev: true /arrify@1.0.1: @@ -3673,7 +4308,6 @@ packages: /assert-never@1.2.1: resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} - dev: false /assert-plus@1.0.0: resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} @@ -3682,36 +4316,50 @@ packages: /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - dev: true /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} - dev: true + + /async-hook-jl@1.7.6: + resolution: {integrity: sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==} + engines: {node: ^4.7 || >=6.9 || >=7.3} + dependencies: + stack-chain: 1.3.7 + dev: false + + /async-listener@0.6.10: + resolution: {integrity: sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==} + engines: {node: <=0.11.8 || >0.11.10} + dependencies: + semver: 5.7.2 + shimmer: 1.2.1 + dev: false /async@3.2.5: resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - dev: true /at-least-node@1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} dev: true - /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + /available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} + dependencies: + possible-typed-array-names: 1.0.0 dev: true /aws-sign2@0.7.0: resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} dev: true - /aws4@1.12.0: - resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + /aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} dev: true /axios@1.6.1: @@ -3724,86 +4372,95 @@ packages: - debug dev: true - /azure-devops-node-api@7.2.0: - resolution: {integrity: sha512-pMfGJ6gAQ7LRKTHgiRF+8iaUUeGAI0c8puLaqHLc7B8AR7W6GJLozK9RFeUHFjEGybC9/EB3r67WPd7e46zQ8w==} + /axios@1.7.4: + resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==} dependencies: - os: 0.1.1 - tunnel: 0.0.4 - typed-rest-client: 1.2.0 - underscore: 1.8.3 + follow-redirects: 1.15.9 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: false + + /axios@1.7.7: + resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} + dependencies: + follow-redirects: 1.15.9 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug dev: true - /babel-jest@29.7.0(@babel/core@7.23.7): + /babel-jest@29.7.0(@babel/core@7.25.7): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.25.7 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.23.7) + babel-preset-jest: 29.6.3(@babel/core@7.25.7) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.25.7 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-jest-hoist@29.6.3: resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 + '@babel/template': 7.25.7 + '@babel/types': 7.25.7 '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 - dev: true + '@types/babel__traverse': 7.20.6 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + /babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.7): + resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7) - dev: true - - /babel-preset-jest@29.6.3(@babel/core@7.23.7): + '@babel/core': 7.25.7 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) + '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7) + + /babel-preset-jest@29.6.3(@babel/core@7.25.7): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.25.7 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7) - dev: true + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.7) /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -3862,10 +4519,6 @@ packages: resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==} dev: true - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - dev: true - /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: @@ -3895,16 +4548,15 @@ packages: resolve: 1.1.7 dev: true - /browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + /browserslist@4.24.0: + resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001579 - electron-to-chromium: 1.4.643 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) - dev: true + caniuse-lite: 1.0.30001667 + electron-to-chromium: 1.5.33 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.0) /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -3917,15 +4569,9 @@ packages: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 - dev: true - - /buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - dev: true /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - dev: true /buffer-indexof-polyfill@1.0.2: resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==} @@ -3948,8 +4594,8 @@ packages: resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} dev: true - /builtins@5.0.1: - resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + /builtins@5.1.0: + resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} dependencies: semver: 7.3.7 dev: true @@ -3989,16 +4635,16 @@ packages: resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - '@npmcli/fs': 3.1.0 + '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 - glob: 10.3.10 + glob: 10.4.5 lru-cache: 7.18.3 - minipass: 7.0.4 + minipass: 7.1.2 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 p-map: 4.0.0 - ssri: 10.0.5 + ssri: 10.0.6 tar: 6.1.11 unique-filename: 3.0.0 dev: true @@ -4008,12 +4654,25 @@ packages: engines: {node: '>=6'} dev: true - /call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + /caching-transform@4.0.0: + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} + dependencies: + hasha: 5.2.2 + make-dir: 3.1.0 + package-hash: 4.0.0 + write-file-atomic: 3.0.3 + dev: true + + /call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.2.0 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 dev: true /call-me-maybe@1.0.2: @@ -4023,7 +4682,7 @@ packages: /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - dev: true + requiresBuild: true /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} @@ -4037,16 +4696,13 @@ packages: /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - dev: true /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - dev: true - /caniuse-lite@1.0.30001579: - resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} - dev: true + /caniuse-lite@1.0.30001667: + resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==} /caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -4062,7 +4718,6 @@ packages: get-func-name: 2.0.2 pathval: 1.1.1 type-detect: 4.0.8 - dev: true /chainsaw@0.1.0: resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==} @@ -4077,7 +4732,6 @@ packages: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - dev: true /chalk@3.0.0: resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} @@ -4102,10 +4756,16 @@ packages: ansi-styles: 4.3.0 supports-color: 7.2.0 + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + requiresBuild: true + dev: true + optional: true + /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} - dev: true /chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -4115,31 +4775,6 @@ packages: resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} dependencies: get-func-name: 2.0.2 - dev: true - - /cheerio-select@2.1.0: - resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} - dependencies: - boolbase: 1.0.0 - css-select: 5.1.0 - css-what: 6.1.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - dev: true - - /cheerio@1.0.0-rc.12: - resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} - engines: {node: '>= 6'} - dependencies: - cheerio-select: 2.1.0 - dom-serializer: 2.0.0 - domhandler: 5.0.3 - domutils: 3.1.0 - htmlparser2: 8.0.2 - parse5: 7.1.2 - parse5-htmlparser2-tree-adapter: 7.0.0 - dev: true /chevrotain@10.4.2: resolution: {integrity: sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg==} @@ -4168,19 +4803,17 @@ packages: engines: {node: '>=10'} dev: true - /chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + /chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} engines: {node: '>=6.0'} dev: true /ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} - dev: true - /cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} - dev: true + /cjs-module-lexer@1.4.1: + resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==} /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} @@ -4251,7 +4884,6 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: true /clone-buffer@1.0.0: resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} @@ -4289,6 +4921,15 @@ packages: readable-stream: 2.3.8 dev: false + /cls-hooked@4.2.2: + resolution: {integrity: sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==} + engines: {node: ^4.7 || >=6.9 || >=7.3 || >=8.2.1} + dependencies: + async-hook-jl: 1.7.6 + emitter-listener: 1.1.2 + semver: 5.7.2 + dev: false + /cmd-shim@6.0.1: resolution: {integrity: sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -4297,11 +4938,9 @@ packages: /co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - dev: true /collect-v8-coverage@1.0.2: resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - dev: true /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} @@ -4363,7 +5002,6 @@ packages: engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 - dev: true /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -4374,13 +5012,24 @@ packages: engines: {node: '>= 6'} dev: true - /commitizen@4.3.0(@types/node@20.11.5)(typescript@4.9.4): - resolution: {integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==} + /comment-json@4.2.5: + resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==} + engines: {node: '>= 6'} + dependencies: + array-timsort: 1.0.3 + core-util-is: 1.0.3 + esprima: 4.0.1 + has-own-prop: 2.0.0 + repeat-string: 1.6.1 + dev: true + + /commitizen@4.3.1(@types/node@18.11.9)(typescript@4.9.4): + resolution: {integrity: sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==} engines: {node: '>= 12'} hasBin: true dependencies: cachedir: 2.3.0 - cz-conventional-changelog: 3.3.0(@types/node@20.11.5)(typescript@4.9.4) + cz-conventional-changelog: 3.3.0(@types/node@18.11.9)(typescript@4.9.4) dedent: 0.7.0 detect-indent: 6.1.0 find-node-modules: 2.1.3 @@ -4400,7 +5049,6 @@ packages: /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - dev: false /compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} @@ -4426,6 +5074,13 @@ packages: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true + /continuation-local-storage@3.2.1: + resolution: {integrity: sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==} + dependencies: + async-listener: 0.6.10 + emitter-listener: 1.1.2 + dev: false + /conventional-changelog-angular@5.0.13: resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} engines: {node: '>=10'} @@ -4664,12 +5319,15 @@ packages: meow: 8.1.2 dev: true + /convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + dev: true + /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - dev: true - /core-js@3.35.1: - resolution: {integrity: sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==} + /core-js@3.38.1: + resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==} requiresBuild: true dev: true @@ -4680,7 +5338,7 @@ packages: /core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.5)(cosmiconfig@8.3.6)(typescript@4.9.4): + /cosmiconfig-typescript-loader@5.0.0(@types/node@18.11.9)(cosmiconfig@9.0.0)(typescript@4.9.4): resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} engines: {node: '>=v16'} requiresBuild: true @@ -4689,9 +5347,9 @@ packages: cosmiconfig: '>=8.2' typescript: '>=4' dependencies: - '@types/node': 20.11.5 - cosmiconfig: 8.3.6(typescript@4.9.4) - jiti: 1.21.0 + '@types/node': 18.11.9 + cosmiconfig: 9.0.0(typescript@4.9.4) + jiti: 1.21.6 typescript: 4.9.4 dev: true optional: true @@ -4723,6 +5381,24 @@ packages: typescript: 4.9.4 dev: true + /cosmiconfig@9.0.0(typescript@4.9.4): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + requiresBuild: true + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + typescript: 4.9.4 + dev: true + optional: true + /coveralls@3.1.0: resolution: {integrity: sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==} engines: {node: '>=6'} @@ -4735,7 +5411,7 @@ packages: request: 2.88.2 dev: true - /create-jest@29.7.0(@types/node@20.11.5)(ts-node@8.5.2): + /create-jest@29.7.0(@types/node@18.11.9)(ts-node@8.5.2): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -4744,7 +5420,7 @@ packages: chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + jest-config: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -4752,7 +5428,6 @@ packages: - babel-plugin-macros - supports-color - ts-node - dev: true /cross-env@7.0.3: resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} @@ -4788,22 +5463,6 @@ packages: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - dev: true - - /css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} - dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 5.0.3 - domutils: 3.1.0 - nth-check: 2.1.1 - dev: true - - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - dev: true /cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} @@ -4842,18 +5501,25 @@ packages: stream-transform: 2.1.3 dev: true - /cz-conventional-changelog@3.3.0(@types/node@20.11.5)(typescript@4.9.4): + /currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + dependencies: + array-find-index: 1.0.2 + dev: true + + /cz-conventional-changelog@3.3.0(@types/node@18.11.9)(typescript@4.9.4): resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==} engines: {node: '>= 10'} dependencies: chalk: 2.4.2 - commitizen: 4.3.0(@types/node@20.11.5)(typescript@4.9.4) + commitizen: 4.3.1(@types/node@18.11.9)(typescript@4.9.4) conventional-commit-types: 3.0.0 lodash.map: 4.6.0 longest: 2.0.1 word-wrap: 1.2.5 optionalDependencies: - '@commitlint/load': 18.5.0(@types/node@20.11.5)(typescript@4.9.4) + '@commitlint/load': 19.5.0(@types/node@18.11.9)(typescript@4.9.4) transitivePeerDependencies: - '@types/node' - typescript @@ -4887,6 +5553,33 @@ packages: whatwg-url: 11.0.0 dev: true + /data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + /date-format@2.1.0: resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} engines: {node: '>=4.0'} @@ -4897,6 +5590,17 @@ packages: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + dev: true + /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -4908,6 +5612,17 @@ packages: dependencies: ms: 2.1.2 + /debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} @@ -4929,28 +5644,25 @@ packages: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true - /dedent@1.5.1: - resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} + /dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: babel-plugin-macros: optional: true - dev: true /deep-eql@3.0.1: resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} engines: {node: '>=0.12'} dependencies: type-detect: 4.0.8 - dev: true /deep-equal-in-any-order@1.0.28: resolution: {integrity: sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ==} dependencies: lodash.mapvalues: 4.6.0 sort-any: 1.2.9 - dev: true /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} @@ -4963,11 +5675,16 @@ packages: /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - dev: true /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} + + /default-require-extensions@3.0.1: + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} + dependencies: + strip-bom: 4.0.0 dev: true /defaults@1.0.4: @@ -4976,13 +5693,13 @@ packages: clone: 1.0.4 dev: true - /define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + /define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.2 + es-define-property: 1.0.0 + es-errors: 1.3.0 gopd: 1.0.1 - has-property-descriptors: 1.0.1 dev: true /define-lazy-prop@2.0.0: @@ -4994,24 +5711,19 @@ packages: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 object-keys: 1.1.1 dev: true /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - dev: true /delegates@1.0.0: resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} dev: true - /denodeify@1.2.1: - resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} - dev: true - /deprecation@2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: true @@ -5034,7 +5746,20 @@ packages: /detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} - dev: true + + /diagnostic-channel-publishers@1.0.8(diagnostic-channel@1.1.1): + resolution: {integrity: sha512-HmSm9hXxSPxA9BaLGY98QU1zsdjeCk113KjAYGPCen1ZP6mhVaTPzHd6UYv5r21DnWANi+f+NyPOHruGT9jpqQ==} + peerDependencies: + diagnostic-channel: '*' + dependencies: + diagnostic-channel: 1.1.1 + dev: false + + /diagnostic-channel@1.1.1: + resolution: {integrity: sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==} + dependencies: + semver: 7.5.4 + dev: false /diff-sequences@25.2.6: resolution: {integrity: sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==} @@ -5044,12 +5769,10 @@ packages: /diff-sequences@29.6.3: resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - dev: true /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} @@ -5057,24 +5780,18 @@ packages: dependencies: path-type: 4.0.0 - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 dev: true - /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - entities: 4.5.0 - dev: true - - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - dev: true + esutils: 2.0.3 /domexception@4.0.0: resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} @@ -5084,21 +5801,6 @@ packages: webidl-conversions: 7.0.0 dev: true - /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} - dependencies: - domelementtype: 2.3.0 - dev: true - - /domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - dev: true - /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} @@ -5111,11 +5813,23 @@ packages: engines: {node: '>=12'} dev: true + /dotenv-expand@11.0.6: + resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==} + engines: {node: '>=12'} + dependencies: + dotenv: 16.4.5 + dev: true + /dotenv@16.3.2: resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} engines: {node: '>=12'} dev: true + /dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} + dev: true + /duplexer2@0.1.4: resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} dependencies: @@ -5144,18 +5858,21 @@ packages: dependencies: jake: 10.8.7 - /electron-to-chromium@1.4.643: - resolution: {integrity: sha512-QHscvvS7gt155PtoRC0dR2ilhL8E9LHhfTQEq1uD5AL0524rBLAwpAREFH06f87/e45B9XkR6Ki5dbhbCsVEIg==} - dev: true + /electron-to-chromium@1.5.33: + resolution: {integrity: sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==} + + /emitter-listener@1.1.2: + resolution: {integrity: sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==} + dependencies: + shimmer: 1.2.1 + dev: false /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} - dev: true /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - dev: true /emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} @@ -5184,8 +5901,8 @@ packages: once: 1.4.0 dev: true - /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} + /enhanced-resolve@5.17.1: + resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 @@ -5205,11 +5922,6 @@ packages: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - dev: true - - /entities@2.0.3: - resolution: {integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==} - dev: true /entities@4.3.0: resolution: {integrity: sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==} @@ -5224,6 +5936,7 @@ packages: /env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} + requiresBuild: true dev: true /envinfo@7.8.1: @@ -5238,9 +5951,9 @@ packages: /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + requiresBuild: true dependencies: is-arrayish: 0.2.1 - dev: true /error-stack-parser@2.1.4: resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} @@ -5248,62 +5961,88 @@ packages: stackframe: 1.3.4 dev: false - /es-abstract@1.22.3: - resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + /es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} engines: {node: '>= 0.4'} dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 + es-define-property: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.4 gopd: 1.0.1 - has-property-descriptors: 1.0.1 - has-proto: 1.0.1 + has-property-descriptors: 1.0.2 + has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 + hasown: 2.0.2 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 is-callable: 1.2.7 - is-negative-zero: 2.0.2 + is-data-view: 1.0.1 + is-negative-zero: 2.0.3 is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 + is-shared-array-buffer: 1.0.3 is-string: 1.0.7 - is-typed-array: 1.1.12 + is-typed-array: 1.1.13 is-weakref: 1.0.2 - object-inspect: 1.13.1 + object-inspect: 1.13.2 object-keys: 1.1.1 object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.1.0 - safe-regex-test: 1.0.2 - 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 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.2 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.2 + typed-array-length: 1.0.6 unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 + which-typed-array: 1.1.15 dev: true - /es-module-lexer@1.4.1: - resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} + /es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + dev: true + + /es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} dev: true - /es-set-tostringtag@2.0.2: - resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + /es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 + es-errors: 1.3.0 + dev: true + + /es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.2 dev: true /es-shim-unscopables@1.0.2: @@ -5331,6 +6070,10 @@ packages: next-tick: 1.1.0 dev: true + /es6-error@4.1.1: + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + dev: true + /es6-iterator@2.0.3: resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} dependencies: @@ -5385,20 +6128,17 @@ packages: '@esbuild/win32-x64': 0.17.12 dev: true - /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + /escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} - dev: true /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} - dev: true /escape-string-regexp@2.0.0: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} engines: {node: '>=8'} - dev: true /escodegen@2.1.0: resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} @@ -5419,6 +6159,67 @@ packages: eslint: '>=7.0.0' dependencies: eslint: 7.18.0 + + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + dependencies: + debug: 3.2.7 + is-core-module: 2.15.1 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.31.0)(eslint@7.18.0): + resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + dependencies: + debug: 4.3.7 + enhanced-resolve: 5.17.1 + eslint: 7.18.0 + eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0) + eslint-plugin-import: 2.31.0(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0) + fast-glob: 3.3.2 + get-tsconfig: 4.8.1 + is-core-module: 2.13.1 + is-glob: 4.0.3 + transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-node + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0): + resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + debug: 3.2.7 + eslint: 7.18.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.6.1(eslint-plugin-import@2.31.0)(eslint@7.18.0) + transitivePeerDependencies: + - supports-color dev: true /eslint-plugin-eslint-comments@3.2.0(eslint@7.18.0): @@ -5430,6 +6231,41 @@ packages: escape-string-regexp: 1.0.5 eslint: 7.18.0 ignore: 5.3.0 + + /eslint-plugin-import@2.31.0(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0): + resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.5 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 7.18.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0) + hasown: 2.0.2 + is-core-module: 2.15.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.0 + semver: 6.3.1 + string.prototype.trimend: 1.0.8 + tsconfig-paths: 3.15.0 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color dev: true /eslint-scope@5.1.1: @@ -5438,14 +6274,12 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - dev: true /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 - dev: true /eslint-utils@3.0.0(eslint@7.18.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} @@ -5455,29 +6289,28 @@ packages: dependencies: eslint: 7.18.0 eslint-visitor-keys: 2.1.0 - dev: true + dev: false /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} - dev: true /eslint-visitor-keys@2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} - dev: true /eslint@7.18.0: resolution: {integrity: sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==} engines: {node: ^10.12.0 || >=12.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.7 '@eslint/eslintrc': 0.3.0 ajv: 6.12.3 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.7 doctrine: 3.0.0 enquirer: 2.4.1 eslint-scope: 5.1.1 @@ -5511,7 +6344,6 @@ packages: v8-compile-cache: 2.4.0 transitivePeerDependencies: - supports-color - dev: true /esm@3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} @@ -5525,42 +6357,39 @@ packages: acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 - dev: true /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true - dev: true /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 - dev: true /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 - dev: true /estraverse@4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} - dev: true /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} + + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} dev: true /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} - dev: true /event-emitter@0.3.5: resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} @@ -5600,7 +6429,7 @@ packages: cross-spawn: 7.0.3 get-stream: 6.0.0 human-signals: 2.1.0 - is-stream: 2.0.0 + is-stream: 2.0.1 merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 @@ -5621,12 +6450,10 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 - dev: true /exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} - dev: true /expand-tilde@2.0.2: resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} @@ -5656,7 +6483,6 @@ packages: jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 jest-util: 29.7.0 - dev: true /exponential-backoff@3.1.1: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} @@ -5708,12 +6534,15 @@ packages: /fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - dev: true /fast-safe-stringify@2.0.7: resolution: {integrity: sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==} dev: false + /fast-uri@3.0.1: + resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==} + requiresBuild: true + /fast-xml-parser@4.2.7: resolution: {integrity: sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==} hasBin: true @@ -5730,13 +6559,6 @@ packages: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 - dev: true - - /fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} - dependencies: - pend: 1.2.0 - dev: true /fecha@4.2.3: resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} @@ -5754,7 +6576,6 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.2.0 - dev: true /filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} @@ -5775,6 +6596,15 @@ packages: dependencies: to-regex-range: 5.0.1 + /find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 + pkg-dir: 4.2.0 + dev: true + /find-node-modules@2.1.3: resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} dependencies: @@ -5799,7 +6629,6 @@ packages: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - dev: true /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} @@ -5845,7 +6674,6 @@ packages: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 - dev: true /flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} @@ -5854,7 +6682,6 @@ packages: /flatted@3.2.9: resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} - dev: true /fn.name@1.1.0: resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} @@ -5870,14 +6697,31 @@ packages: optional: true dev: true + /follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + /for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 dev: true - /foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + /foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 3.0.7 + dev: true + + /foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 @@ -5913,6 +6757,15 @@ packages: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 + + /fromentries@1.3.2: + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + dev: true + + /front-matter@4.0.2: + resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==} + dependencies: + js-yaml: 3.14.1 dev: true /fs-constants@1.0.0: @@ -5934,7 +6787,6 @@ packages: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true /fs-extra@7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} @@ -5974,24 +6826,23 @@ packages: resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 7.0.4 + minipass: 7.1.2 dev: true /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - dev: true /fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true - dev: true optional: true /fstream@1.0.12: resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} engines: {node: '>=0.6'} + deprecated: This package is no longer supported. dependencies: graceful-fs: 4.2.11 inherits: 2.0.4 @@ -6001,21 +6852,19 @@ packages: /function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - dev: true /function.prototype.name@1.1.6: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 functions-have-names: 1.2.3 dev: true /functional-red-black-tree@1.0.1: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - dev: true /functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} @@ -6024,6 +6873,7 @@ packages: /gauge@4.0.4: resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -6038,22 +6888,21 @@ packages: /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} - dev: true /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - dev: true /get-func-name@2.0.2: resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - dev: true - /get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + /get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} dependencies: + es-errors: 1.3.0 function-bind: 1.1.2 - has-proto: 1.0.1 + has-proto: 1.0.3 has-symbols: 1.0.3 hasown: 2.0.0 dev: true @@ -6065,7 +6914,6 @@ packages: /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} - dev: true /get-pkg-repo@4.2.1: resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} @@ -6092,7 +6940,7 @@ packages: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} dependencies: - pump: 3.0.0 + pump: 3.0.2 dev: true /get-stream@6.0.0: @@ -6103,14 +6951,20 @@ packages: /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} - dev: true - /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + /get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + dev: true + + /get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + dependencies: + resolve-pkg-maps: 1.0.0 dev: true /getpass@0.1.7: @@ -6206,20 +7060,21 @@ packages: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} dev: true - /glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} + /glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} hasBin: true dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 - minimatch: 9.0.3 - minipass: 7.0.4 - path-scurry: 1.10.1 + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 dev: true /glob@7.1.4: resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6231,6 +7086,7 @@ packages: /glob@7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6238,10 +7094,10 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6254,6 +7110,7 @@ packages: /glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -6269,8 +7126,17 @@ packages: fs.realpath: 1.0.0 minimatch: 8.0.4 minipass: 4.2.8 - path-scurry: 1.10.1 + path-scurry: 1.11.1 + dev: true + + /global-directory@4.0.1: + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} + requiresBuild: true + dependencies: + ini: 4.1.1 dev: true + optional: true /global-dirs@0.1.1: resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} @@ -6302,20 +7168,19 @@ packages: /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - dev: true /globals@12.4.0: resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==} engines: {node: '>=8'} dependencies: type-fest: 0.8.1 - dev: true - /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + /globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 + gopd: 1.0.1 dev: true /globby@11.1.0: @@ -6332,7 +7197,7 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 dev: true /graceful-fs@4.2.11: @@ -6352,7 +7217,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.17.4 + uglify-js: 3.19.3 dev: true /har-schema@2.0.0: @@ -6381,20 +7246,24 @@ packages: /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} - dev: true /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - /has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + /has-own-prop@2.0.0: + resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} dependencies: - get-intrinsic: 1.2.2 + es-define-property: 1.0.0 dev: true - /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + /has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} engines: {node: '>= 0.4'} dev: true @@ -6403,8 +7272,8 @@ packages: engines: {node: '>= 0.4'} dev: true - /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + /has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 @@ -6414,11 +7283,25 @@ packages: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: true + /hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} + dependencies: + is-stream: 2.0.1 + type-fest: 0.8.1 + dev: true + /hasown@2.0.0: resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 + + /hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 dev: true /homedir-polyfill@1.0.3: @@ -6462,16 +7345,6 @@ packages: /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - dev: true - - /htmlparser2@8.0.2: - resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - entities: 4.5.0 - dev: true /http-cache-semantics@4.1.1: resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} @@ -6483,7 +7356,7 @@ packages: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -6494,10 +7367,9 @@ packages: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color - dev: true /http-signature@1.2.0: resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} @@ -6529,7 +7401,6 @@ packages: /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} - dev: true /humanize-ms@1.2.1: resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} @@ -6547,7 +7418,6 @@ packages: resolution: {integrity: sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==} dependencies: '@babel/runtime': 7.23.8 - dev: true /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} @@ -6574,8 +7444,8 @@ packages: minimatch: 5.1.6 dev: true - /ignore-walk@6.0.4: - resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==} + /ignore-walk@6.0.5: + resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minimatch: 9.0.3 @@ -6584,7 +7454,6 @@ packages: /ignore@4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} - dev: true /ignore@5.3.0: resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} @@ -6596,7 +7465,15 @@ packages: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - dev: true + + /import-in-the-middle@1.11.2: + resolution: {integrity: sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==} + dependencies: + acorn: 8.12.1 + acorn-import-attributes: 1.9.5(acorn@8.12.1) + cjs-module-lexer: 1.4.1 + module-details-from-path: 1.0.3 + dev: false /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} @@ -6607,10 +7484,23 @@ packages: resolve-cwd: 3.0.0 dev: true + /import-local@3.2.0: + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + engines: {node: '>=8'} + hasBin: true + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + + /import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + requiresBuild: true + dev: true + optional: true + /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - dev: true /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} @@ -6623,10 +7513,10 @@ packages: /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. dependencies: once: 1.4.0 wrappy: 1.0.2 - dev: true /inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -6635,42 +7525,28 @@ packages: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} dev: true + /ini@4.1.1: + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + requiresBuild: true + dev: true + optional: true + /init-package-json@5.0.0: resolution: {integrity: sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: npm-package-arg: 10.1.0 - promzard: 1.0.0 + promzard: 1.0.2 read: 2.1.0 - read-package-json: 6.0.4 - semver: 7.3.7 - validate-npm-package-license: 3.0.4 - validate-npm-package-name: 5.0.0 - dev: true - - /inquirer@8.2.5: - resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} - engines: {node: '>=12.0.0'} - dependencies: - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-width: 3.0.0 - external-editor: 3.1.0 - figures: 3.2.0 - lodash: 4.17.21 - mute-stream: 0.0.8 - ora: 5.4.1 - run-async: 2.4.1 - rxjs: 7.8.1 - string-width: 4.2.3 - strip-ansi: 6.0.1 - through: 2.3.8 - wrap-ansi: 7.0.0 + read-package-json: 6.0.4 + semver: 7.3.7 + validate-npm-package-license: 3.0.4 + validate-npm-package-name: 5.0.0 dev: true - /inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + /inquirer@8.2.5: + resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 @@ -6687,16 +7563,16 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 - wrap-ansi: 6.2.0 + wrap-ansi: 7.0.0 dev: true - /internal-slot@1.0.6: - resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + /internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 dev: true /interpret@1.4.0: @@ -6704,21 +7580,33 @@ packages: engines: {node: '>= 0.10'} dev: true - /ip@2.0.0: - resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + /intl-messageformat-parser@6.1.2: + resolution: {integrity: sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==} + deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser + dependencies: + '@formatjs/ecma402-abstract': 1.5.0 + tslib: 2.7.0 + dev: true + + /ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 dev: true - /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + /is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 dev: true /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - dev: true + requiresBuild: true /is-arrayish@0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} @@ -6734,8 +7622,8 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 dev: true /is-callable@1.2.7: @@ -6754,13 +7642,26 @@ packages: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: hasown: 2.0.0 + + /is-core-module@2.15.1: + resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} + engines: {node: '>= 0.4'} + dependencies: + hasown: 2.0.2 + dev: true + + /is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + dependencies: + is-typed-array: 1.1.13 dev: true /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-docker@2.2.1: @@ -6776,12 +7677,10 @@ packages: /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - dev: true /is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} - dev: true /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} @@ -6798,8 +7697,8 @@ packages: resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} dev: true - /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + /is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} dev: true @@ -6807,7 +7706,7 @@ packages: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-number@7.0.0: @@ -6857,8 +7756,8 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 dev: true /is-regexp@1.0.0: @@ -6866,10 +7765,11 @@ packages: engines: {node: '>=0.10.0'} dev: true - /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + /is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true /is-ssh@1.4.0: @@ -6891,7 +7791,7 @@ packages: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-subdir@1.2.0: @@ -6915,11 +7815,11 @@ packages: text-extensions: 1.9.0 dev: true - /is-typed-array@1.1.12: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + /is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} dependencies: - which-typed-array: 1.1.13 + which-typed-array: 1.1.15 dev: true /is-typedarray@1.0.0: @@ -6937,7 +7837,7 @@ packages: /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true /is-windows@1.0.2: @@ -6966,7 +7866,6 @@ packages: /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: true /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} @@ -6980,32 +7879,60 @@ packages: /istanbul-lib-coverage@3.2.2: resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} engines: {node: '>=8'} + + /istanbul-lib-hook@3.0.0: + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} + dependencies: + append-transform: 2.0.0 + dev: true + + /istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.25.7 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color dev: true /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.23.7 - '@babel/parser': 7.23.6 + '@babel/core': 7.25.7 + '@babel/parser': 7.25.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /istanbul-lib-instrument@6.0.1: - resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} + /istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.23.7 - '@babel/parser': 7.23.6 + '@babel/core': 7.25.7 + '@babel/parser': 7.25.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.5.4 transitivePeerDependencies: - supports-color + + /istanbul-lib-processinfo@2.0.3: + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + engines: {node: '>=8'} + dependencies: + archy: 1.0.0 + cross-spawn: 7.0.3 + istanbul-lib-coverage: 3.2.2 + p-map: 3.0.0 + rimraf: 3.0.2 + uuid: 8.3.2 dev: true /istanbul-lib-report@3.0.1: @@ -7015,30 +7942,26 @@ packages: istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 - dev: true /istanbul-lib-source-maps@4.0.1: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.4 + debug: 4.3.7 istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color - dev: true - /istanbul-reports@3.1.6: - resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} + /istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - dev: true - /jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + /jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: @@ -7062,7 +7985,6 @@ packages: execa: 5.1.1 jest-util: 29.7.0 p-limit: 3.1.0 - dev: true /jest-circus@29.7.0: resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} @@ -7072,10 +7994,10 @@ packages: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.1 + dedent: 1.5.3 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -7085,15 +8007,14 @@ packages: jest-util: 29.7.0 p-limit: 3.1.0 pretty-format: 29.7.0 - pure-rand: 6.0.4 + pure-rand: 6.1.0 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: - babel-plugin-macros - supports-color - dev: true - /jest-cli@29.7.0(@types/node@20.11.5)(ts-node@8.5.2): + /jest-cli@29.7.0(@types/node@18.11.9)(ts-node@8.5.2): resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -7107,10 +8028,10 @@ packages: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + create-jest: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) exit: 0.1.2 - import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -7119,9 +8040,8 @@ packages: - babel-plugin-macros - supports-color - ts-node - dev: true - /jest-config@29.5.0(@types/node@20.11.5)(ts-node@8.5.2): + /jest-config@29.5.0(@types/node@18.11.9)(ts-node@8.5.2): resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -7133,11 +8053,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.25.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 - babel-jest: 29.7.0(@babel/core@7.23.7) + '@types/node': 18.11.9 + babel-jest: 29.7.0(@babel/core@7.25.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -7162,7 +8082,7 @@ packages: - supports-color dev: true - /jest-config@29.7.0(@types/node@20.11.5)(ts-node@8.5.2): + /jest-config@29.7.0(@types/node@18.11.9)(ts-node@8.5.2): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -7174,11 +8094,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.25.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 - babel-jest: 29.7.0(@babel/core@7.23.7) + '@types/node': 18.11.9 + babel-jest: 29.7.0(@babel/core@7.25.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -7201,7 +8121,6 @@ packages: transitivePeerDependencies: - babel-plugin-macros - supports-color - dev: true /jest-diff@25.5.0: resolution: {integrity: sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==} @@ -7221,14 +8140,12 @@ packages: diff-sequences: 29.6.3 jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true /jest-docblock@29.7.0: resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 - dev: true /jest-each@29.7.0: resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} @@ -7239,7 +8156,6 @@ packages: jest-get-type: 29.6.3 jest-util: 29.7.0 pretty-format: 29.7.0 - dev: true /jest-environment-jsdom@29.7.0: resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} @@ -7254,7 +8170,7 @@ packages: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -7271,7 +8187,7 @@ packages: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-mock: 29.7.0 jest-util: 29.7.0 dev: true @@ -7283,16 +8199,15 @@ packages: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-mock: 29.7.0 jest-util: 29.7.0 - dev: true /jest-esm-transformer@1.0.0: resolution: {integrity: sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==} dependencies: - '@babel/core': 7.23.7 - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7) + '@babel/core': 7.25.7 + '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color dev: true @@ -7306,10 +8221,9 @@ packages: jest: optional: true dependencies: - jest: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) jest-diff: 29.7.0 jest-get-type: 29.6.3 - dev: true /jest-get-type@25.2.6: resolution: {integrity: sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==} @@ -7319,7 +8233,6 @@ packages: /jest-get-type@29.6.3: resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true /jest-haste-map@29.7.0: resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} @@ -7327,7 +8240,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.11.5 + '@types/node': 18.11.9 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -7338,7 +8251,6 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - dev: true /jest-junit@15.0.0: resolution: {integrity: sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==} @@ -7356,7 +8268,6 @@ packages: dependencies: jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true /jest-matcher-utils@25.5.0: resolution: {integrity: sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==} @@ -7376,13 +8287,12 @@ packages: jest-diff: 29.7.0 jest-get-type: 29.6.3 pretty-format: 29.7.0 - dev: true /jest-message-util@25.5.0: resolution: {integrity: sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==} engines: {node: '>= 8.3'} dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.7 '@jest/types': 25.5.0 '@types/stack-utils': 1.0.1 chalk: 3.0.0 @@ -7396,7 +8306,7 @@ packages: resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.7 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -7405,16 +8315,14 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 - dev: true /jest-mock@29.7.0: resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-util: 29.7.0 - dev: true /jest-pnp-resolver@1.2.3(jest-resolve@25.5.1): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -7438,7 +8346,6 @@ packages: optional: true dependencies: jest-resolve: 29.7.0 - dev: true /jest-regex-util@25.2.6: resolution: {integrity: sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==} @@ -7448,7 +8355,6 @@ packages: /jest-regex-util@29.6.3: resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true /jest-resolve-dependencies@29.7.0: resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} @@ -7458,7 +8364,6 @@ packages: jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - dev: true /jest-resolve@25.5.1: resolution: {integrity: sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==} @@ -7488,7 +8393,6 @@ packages: resolve: 1.22.8 resolve.exports: 2.0.2 slash: 3.0.0 - dev: true /jest-runner@29.7.0: resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} @@ -7499,7 +8403,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -7517,7 +8421,6 @@ packages: source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - dev: true /jest-runtime@29.7.0: resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} @@ -7530,9 +8433,9 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 chalk: 4.1.2 - cjs-module-lexer: 1.2.3 + cjs-module-lexer: 1.4.1 collect-v8-coverage: 1.0.2 glob: 7.1.6 graceful-fs: 4.2.11 @@ -7547,13 +8450,12 @@ packages: strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - dev: true /jest-snapshot@25.5.1: resolution: {integrity: sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==} engines: {node: '>= 8.3'} dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.25.7 '@jest/types': 25.5.0 '@types/prettier': 1.19.1 chalk: 3.0.0 @@ -7574,15 +8476,15 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.7 - '@babel/generator': 7.23.6 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7) - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7) - '@babel/types': 7.23.6 + '@babel/core': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7) + '@babel/types': 7.25.7 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.7) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -7596,7 +8498,6 @@ packages: semver: 7.5.4 transitivePeerDependencies: - supports-color - dev: true /jest-sonar@0.2.16: resolution: {integrity: sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==} @@ -7610,7 +8511,7 @@ packages: peerDependencies: jest: '>= 25.0.0' dependencies: - jest: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) jest-snapshot: 25.5.1 dev: true @@ -7619,12 +8520,11 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: true /jest-validate@29.7.0: resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} @@ -7636,7 +8536,6 @@ packages: jest-get-type: 29.6.3 leven: 3.1.0 pretty-format: 29.7.0 - dev: true /jest-watcher@29.7.0: resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} @@ -7644,19 +8543,18 @@ packages: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.11.5 + '@types/node': 18.11.9 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 jest-util: 29.7.0 string-length: 4.0.2 - dev: true /jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.11.5 + '@types/node': 18.11.9 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -7665,13 +8563,12 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 20.11.5 + '@types/node': 18.11.9 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jest@29.5.0(@types/node@20.11.5)(ts-node@8.5.2): + /jest@29.5.0(@types/node@18.11.9)(ts-node@8.5.2): resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -7683,17 +8580,16 @@ packages: dependencies: '@jest/core': 29.7.0(ts-node@8.5.2) '@jest/types': 29.6.3 - import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.11.5)(ts-node@8.5.2) + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + /jiti@1.21.6: + resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true requiresBuild: true dev: true @@ -7701,7 +8597,6 @@ packages: /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: true /js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} @@ -7709,7 +8604,6 @@ packages: dependencies: argparse: 1.0.10 esprima: 4.0.1 - dev: true /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} @@ -7721,6 +8615,10 @@ packages: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} dev: true + /jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + dev: true + /jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} engines: {node: '>=14'} @@ -7731,7 +8629,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.11.3 + acorn: 8.12.1 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 @@ -7744,17 +8642,17 @@ packages: http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.7 + nwsapi: 2.2.13 parse5: 7.1.2 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.3 + tough-cookie: 4.1.4 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.16.0 + ws: 8.18.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil @@ -7762,15 +8660,13 @@ packages: - utf-8-validate dev: true - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} hasBin: true - dev: true /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - dev: true /json-parse-better-errors@1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} @@ -7778,17 +8674,11 @@ packages: /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - dev: true - - /json-parse-even-better-errors@3.0.1: - resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + requiresBuild: true /json-parse-even-better-errors@3.0.2: resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: false /json-schema-ref-parser@9.0.9: resolution: {integrity: sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==} @@ -7824,7 +8714,7 @@ packages: /json-schema-traverse@1.0.0: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - dev: true + requiresBuild: true /json-schema@0.4.0: resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} @@ -7832,17 +8722,32 @@ packages: /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + /json-stable-stringify@1.1.1: + resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + isarray: 2.0.5 + jsonify: 0.0.1 + object-keys: 1.1.1 dev: true /json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} dev: true + /json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true - dev: true /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} @@ -7859,6 +8764,10 @@ packages: optionalDependencies: graceful-fs: 4.2.11 + /jsonify@0.0.1: + resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} + dev: true + /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} @@ -7878,7 +8787,6 @@ packages: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 - dev: true /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} @@ -7889,12 +8797,10 @@ packages: resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==} dependencies: graceful-fs: 4.2.11 - dev: true /kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} - dev: true /kleur@4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} @@ -7944,7 +8850,7 @@ packages: import-local: 3.1.0 ini: 1.3.8 init-package-json: 5.0.0 - inquirer: 8.2.6 + inquirer: 8.2.5 is-ci: 3.0.1 is-stream: 2.0.0 jest-diff: 29.7.0 @@ -8002,7 +8908,6 @@ packages: /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} - dev: true /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} @@ -8010,7 +8915,6 @@ packages: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - dev: true /libnpmaccess@7.0.2: resolution: {integrity: sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==} @@ -8033,26 +8937,20 @@ packages: proc-log: 3.0.0 semver: 7.3.7 sigstore: 1.9.0 - ssri: 10.0.5 + ssri: 10.0.6 transitivePeerDependencies: - supports-color dev: true /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - dev: true + requiresBuild: true - /lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} + /lines-and-columns@2.0.3: + resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /linkify-it@2.2.0: - resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==} - dependencies: - uc.micro: 1.0.6 - dev: true - /lint-staged@10.5.3: resolution: {integrity: sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==} hasBin: true @@ -8061,7 +8959,7 @@ packages: cli-truncate: 2.1.0 commander: 6.2.1 cosmiconfig: 7.1.0 - debug: 4.3.4 + debug: 4.3.7 dedent: 0.7.0 enquirer: 2.4.1 execa: 4.1.0 @@ -8094,7 +8992,7 @@ packages: enquirer: 2.4.1 log-update: 4.0.0 p-map: 4.0.0 - rfdc: 1.3.1 + rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 @@ -8157,7 +9055,6 @@ packages: engines: {node: '>=8'} dependencies: p-locate: 4.1.0 - dev: true /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} @@ -8166,6 +9063,10 @@ packages: p-locate: 5.0.0 dev: true + /lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + dev: true + /lodash.ismatch@4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} dev: true @@ -8182,7 +9083,6 @@ packages: /lodash.mapvalues@4.6.0: resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} - dev: true /lodash.memoize@4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} @@ -8206,7 +9106,6 @@ packages: /lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - dev: true /lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} @@ -8264,9 +9163,16 @@ packages: engines: {node: '>=0.10.0'} dev: true - /lru-cache@10.1.0: - resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} - engines: {node: 14 || >=16.14} + /loud-rejection@2.2.0: + resolution: {integrity: sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==} + engines: {node: '>=8'} + dependencies: + currently-unhandled: 0.4.1 + signal-exit: 3.0.7 + dev: true + + /lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} dev: true /lru-cache@4.1.5: @@ -8280,7 +9186,6 @@ packages: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 - dev: true /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} @@ -8299,6 +9204,12 @@ packages: es5-ext: 0.10.62 dev: true + /magic-string@0.30.11: + resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + dev: true + /make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -8319,11 +9230,9 @@ packages: engines: {node: '>=10'} dependencies: semver: 7.5.4 - dev: true /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true /make-fetch-happen@10.2.1: resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} @@ -8362,13 +9271,13 @@ packages: is-lambda: 1.0.1 lru-cache: 7.18.3 minipass: 5.0.0 - minipass-fetch: 3.0.4 + minipass-fetch: 3.0.5 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.5 + ssri: 10.0.6 transitivePeerDependencies: - supports-color dev: true @@ -8377,7 +9286,6 @@ packages: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 - dev: true /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} @@ -8389,26 +9297,11 @@ packages: engines: {node: '>=8'} dev: true - /markdown-it@10.0.0: - resolution: {integrity: sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==} - hasBin: true - dependencies: - argparse: 1.0.10 - entities: 2.0.3 - linkify-it: 2.2.0 - mdurl: 1.0.1 - uc.micro: 1.0.6 - dev: true - /matomo-tracker@2.2.2: resolution: {integrity: sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ==} engines: {node: '>=4.2.0'} dev: false - /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - dev: true - /mem-fs-editor@9.4.0(mem-fs@2.1.0): resolution: {integrity: sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==} engines: {node: '>=12.10.0'} @@ -8497,7 +9390,6 @@ packages: /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - dev: true /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} @@ -8517,25 +9409,16 @@ packages: /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} - dev: true /mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - dev: true - - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - dev: true /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} - dev: true /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} @@ -8573,6 +9456,13 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -8608,11 +9498,11 @@ packages: encoding: 0.1.13 dev: true - /minipass-fetch@3.0.4: - resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} + /minipass-fetch@3.0.5: + resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 7.0.4 + minipass: 7.1.2 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: @@ -8626,8 +9516,8 @@ packages: minipass: 3.3.6 dev: true - /minipass-json-stream@1.0.1: - resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + /minipass-json-stream@1.0.2: + resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==} dependencies: jsonparse: 1.3.1 minipass: 3.3.6 @@ -8664,8 +9554,8 @@ packages: engines: {node: '>=8'} dev: true - /minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + /minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} dev: true @@ -8705,6 +9595,10 @@ packages: engines: {node: '>=0.10.0'} dev: true + /module-details-from-path@1.0.3: + resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} + dev: false + /module-not-found-error@1.0.1: resolution: {integrity: sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==} dev: true @@ -8742,9 +9636,14 @@ packages: thenify-all: 1.6.0 dev: true + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - dev: true /negotiator@0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} @@ -8790,8 +9689,8 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-gyp-build@4.8.0: - resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} + /node-gyp-build@4.8.2: + resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==} hasBin: true dev: true @@ -8818,16 +9717,21 @@ packages: /node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - dev: true /node-machine-id@1.1.12: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + /node-preload@0.2.1: + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} + dependencies: + process-on-spawn: 1.0.0 dev: true + /node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} + /nopt@6.0.0: resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -8875,8 +9779,8 @@ packages: npm-normalize-package-bin: 1.0.1 dev: true - /npm-bundled@3.0.0: - resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} + /npm-bundled@3.0.1: + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: npm-normalize-package-bin: 3.0.1 @@ -8932,7 +9836,7 @@ packages: resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - ignore-walk: 6.0.4 + ignore-walk: 6.0.5 dev: true /npm-pick-manifest@8.0.2: @@ -8951,8 +9855,8 @@ packages: dependencies: make-fetch-happen: 11.1.1 minipass: 5.0.0 - minipass-fetch: 3.0.4 - minipass-json-stream: 1.0.1 + minipass-fetch: 3.0.5 + minipass-json-stream: 1.0.2 minizlib: 2.1.2 npm-package-arg: 10.1.0 proc-log: 3.0.0 @@ -8973,7 +9877,7 @@ packages: pidtree: 0.3.1 read-pkg: 3.0.0 shell-quote: 1.8.1 - string.prototype.padend: 3.1.5 + string.prototype.padend: 3.1.6 dev: true /npm-run-path@4.0.1: @@ -8981,11 +9885,11 @@ packages: engines: {node: '>=8'} dependencies: path-key: 3.1.1 - dev: true /npmlog@6.0.2: resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 @@ -8993,14 +9897,8 @@ packages: set-blocking: 2.0.0 dev: true - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - dependencies: - boolbase: 1.0.0 - dev: true - - /nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + /nwsapi@2.2.13: + resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==} dev: true /nx@16.10.0: @@ -9037,7 +9935,7 @@ packages: jest-diff: 29.7.0 js-yaml: 4.1.0 jsonc-parser: 3.2.0 - lines-and-columns: 2.0.4 + lines-and-columns: 2.0.3 minimatch: 3.0.5 node-machine-id: 1.1.12 npm-run-path: 4.0.1 @@ -9048,7 +9946,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.2.0 - tslib: 2.6.2 + tslib: 2.7.0 v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.1.1 @@ -9067,6 +9965,104 @@ packages: - debug dev: true + /nx@19.8.4: + resolution: {integrity: sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.8.0 + '@swc/core': ^1.3.85 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + dependencies: + '@napi-rs/wasm-runtime': 0.2.4 + '@nrwl/tao': 19.8.4 + '@yarnpkg/lockfile': 1.1.0 + '@yarnpkg/parsers': 3.0.0-rc.46 + '@zkochan/js-yaml': 0.0.7 + axios: 1.7.7 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 8.0.1 + dotenv: 16.4.5 + dotenv-expand: 11.0.6 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + front-matter: 4.0.2 + ignore: 5.3.0 + jest-diff: 29.7.0 + jsonc-parser: 3.2.0 + lines-and-columns: 2.0.3 + minimatch: 9.0.3 + node-machine-id: 1.1.12 + npm-run-path: 4.0.1 + open: 8.4.2 + ora: 5.3.0 + semver: 7.5.4 + string-width: 4.2.3 + strong-log-transformer: 2.1.0 + tar-stream: 2.2.0 + tmp: 0.2.1 + tsconfig-paths: 4.2.0 + tslib: 2.7.0 + yargs: 17.7.2 + yargs-parser: 21.1.1 + optionalDependencies: + '@nx/nx-darwin-arm64': 19.8.4 + '@nx/nx-darwin-x64': 19.8.4 + '@nx/nx-freebsd-x64': 19.8.4 + '@nx/nx-linux-arm-gnueabihf': 19.8.4 + '@nx/nx-linux-arm64-gnu': 19.8.4 + '@nx/nx-linux-arm64-musl': 19.8.4 + '@nx/nx-linux-x64-gnu': 19.8.4 + '@nx/nx-linux-x64-musl': 19.8.4 + '@nx/nx-win32-arm64-msvc': 19.8.4 + '@nx/nx-win32-x64-msvc': 19.8.4 + transitivePeerDependencies: + - debug + dev: true + + /nyc@15.1.0: + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} + hasBin: true + dependencies: + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + caching-transform: 4.0.0 + convert-source-map: 1.9.0 + decamelize: 1.2.0 + find-cache-dir: 3.3.2 + find-up: 4.1.0 + foreground-child: 2.0.0 + get-package-type: 0.1.0 + glob: 7.1.6 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-hook: 3.0.0 + istanbul-lib-instrument: 4.0.3 + istanbul-lib-processinfo: 2.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + make-dir: 3.1.0 + node-preload: 0.2.1 + p-map: 3.0.0 + process-on-spawn: 1.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + signal-exit: 3.0.7 + spawn-wrap: 2.0.0 + test-exclude: 6.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - supports-color + dev: true + /oauth-sign@0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} dev: true @@ -9076,8 +10072,9 @@ packages: engines: {node: '>=0.10.0'} dev: true - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + /object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} dev: true /object-keys@1.1.1: @@ -9089,17 +10086,44 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true + /object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + dev: true + + /object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + dev: true + + /object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + dev: true + /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - dev: true /one-time@1.0.0: resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} @@ -9112,7 +10136,6 @@ packages: engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 - dev: true /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} @@ -9133,6 +10156,19 @@ packages: levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + + /ora@5.3.0: + resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + engines: {node: '>=10'} + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 dev: true /ora@5.4.1: @@ -9150,27 +10186,11 @@ packages: wcwidth: 1.0.1 dev: true - /os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} - dev: true - /os-tmpdir@1.0.2: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} dev: true - /os@0.1.1: - resolution: {integrity: sha512-jg06S2xr5De63mLjZVJDf3/k37tpjppr2LR7MUOsxv8XuUCVpCnvbCksXCBcB5gQqQf/K0+87WGTRlAj5q7r1A==} - dev: true - - /osenv@0.1.5: - resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} - dependencies: - os-homedir: 1.0.2 - os-tmpdir: 1.0.2 - dev: true - /outdent@0.5.0: resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} dev: true @@ -9199,14 +10219,12 @@ packages: engines: {node: '>=6'} dependencies: p-try: 2.2.0 - dev: true /p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 - dev: true /p-locate@2.0.0: resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} @@ -9220,7 +10238,6 @@ packages: engines: {node: '>=8'} dependencies: p-limit: 2.3.0 - dev: true /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} @@ -9239,6 +10256,13 @@ packages: engines: {node: '>=6'} dev: true + /p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} + dependencies: + aggregate-error: 3.1.0 + dev: true + /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} @@ -9279,7 +10303,6 @@ packages: /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - dev: true /p-waterfall@2.1.1: resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} @@ -9288,13 +10311,27 @@ packages: p-reduce: 2.1.0 dev: true + /package-hash@4.0.0: + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} + dependencies: + graceful-fs: 4.2.11 + hasha: 5.2.2 + lodash.flattendeep: 4.4.0 + release-zalgo: 1.0.0 + dev: true + + /package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + dev: true + /pacote@15.2.0: resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: '@npmcli/git': 4.1.0 - '@npmcli/installed-package-contents': 2.0.2 + '@npmcli/installed-package-contents': 2.1.0 '@npmcli/promise-spawn': 6.0.2 '@npmcli/run-script': 6.0.2 cacache: 17.1.4 @@ -9309,7 +10346,7 @@ packages: read-package-json: 6.0.4 read-package-json-fast: 3.0.2 sigstore: 1.9.0 - ssri: 10.0.5 + ssri: 10.0.6 tar: 6.1.11 transitivePeerDependencies: - bluebird @@ -9319,9 +10356,9 @@ packages: /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} + requiresBuild: true dependencies: callsites: 3.1.0 - dev: true /parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} @@ -9335,11 +10372,10 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - dev: true /parse-passwd@1.0.0: resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} @@ -9352,25 +10388,12 @@ packages: protocols: 2.0.1 dev: true - /parse-semver@1.1.1: - resolution: {integrity: sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==} - dependencies: - semver: 5.7.2 - dev: true - /parse-url@8.1.0: resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} dependencies: parse-path: 7.0.0 dev: true - /parse5-htmlparser2-tree-adapter@7.0.0: - resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} - dependencies: - domhandler: 5.0.3 - parse5: 7.1.2 - dev: true - /parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: @@ -9385,12 +10408,10 @@ packages: /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} - dev: true /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} - dev: true /path-key@2.0.1: resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} @@ -9400,18 +10421,16 @@ packages: /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} - dev: true /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - dev: true - /path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} + /path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} dependencies: - lru-cache: 10.1.0 - minipass: 7.0.4 + lru-cache: 10.4.3 + minipass: 7.1.2 dev: true /path-type@3.0.0: @@ -9427,19 +10446,13 @@ packages: /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - dev: true - - /pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - dev: true /performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} dev: true - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true + /picocolors@1.1.0: + resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -9473,14 +10486,12 @@ packages: /pirates@4.0.6: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} engines: {node: '>= 6'} - dev: true /pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 - dev: true /please-upgrade-node@3.2.0: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} @@ -9488,20 +10499,33 @@ packages: semver-compare: 1.0.0 dev: true - /preferred-pm@3.1.2: - resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} + /possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + dev: true + + /postcss@8.4.47: + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.1.0 + source-map-js: 1.2.1 + dev: true + + /preferred-pm@3.1.4: + resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} engines: {node: '>=10'} dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 - which-pm: 2.0.0 + which-pm: 2.2.0 dev: true /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - dev: true /prettier@2.8.7: resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} @@ -9525,7 +10549,6 @@ packages: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 - dev: true /proc-log@3.0.0: resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} @@ -9535,10 +10558,16 @@ packages: /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + /process-on-spawn@1.0.0: + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} + dependencies: + fromentries: 1.3.2 + dev: true + /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} - dev: true /promise-inflight@1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} @@ -9563,13 +10592,12 @@ packages: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - dev: true - /promzard@1.0.0: - resolution: {integrity: sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==} + /promzard@1.0.2: + resolution: {integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - read: 2.1.0 + read: 3.0.1 dev: true /protocols@2.0.1: @@ -9595,8 +10623,8 @@ packages: resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} dev: true - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + /pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 @@ -9606,13 +10634,16 @@ packages: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - /pure-rand@6.0.4: - resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} - dev: true + /pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) dev: true /qs@6.5.3: @@ -9644,7 +10675,6 @@ packages: /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - dev: true /read-cmd-shim@4.0.0: resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} @@ -9655,7 +10685,7 @@ packages: resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - json-parse-even-better-errors: 3.0.1 + json-parse-even-better-errors: 3.0.2 npm-normalize-package-bin: 3.0.1 dev: true @@ -9663,8 +10693,8 @@ packages: resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - glob: 10.3.10 - json-parse-even-better-errors: 3.0.1 + glob: 10.4.5 + json-parse-even-better-errors: 3.0.2 normalize-package-data: 5.0.0 npm-normalize-package-bin: 3.0.1 dev: true @@ -9715,15 +10745,15 @@ packages: strip-bom: 3.0.0 dev: true - /read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: '>=0.8'} + /read@2.1.0: + resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - mute-stream: 0.0.8 + mute-stream: 1.0.0 dev: true - /read@2.1.0: - resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} + /read@3.0.1: + resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: mute-stream: 1.0.0 @@ -9770,29 +10800,40 @@ packages: /regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - dev: true /regexp-to-ast@0.5.0: resolution: {integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==} - /regexp.prototype.flags@1.5.1: - resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + /regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - set-function-name: 2.0.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 dev: true /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} + + /release-zalgo@1.0.0: + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} + dependencies: + es6-error: 4.1.1 dev: true /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} dev: false + /repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + dev: true + /replace-ext@1.0.1: resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} engines: {node: '>= 0.10'} @@ -9804,7 +10845,7 @@ packages: deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 dependencies: aws-sign2: 0.7.0 - aws4: 1.12.0 + aws4: 1.13.2 caseless: 0.12.0 combined-stream: 1.0.8 extend: 3.0.2 @@ -9828,12 +10869,22 @@ packages: /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} - dev: true /require-from-string@2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - dev: true + requiresBuild: true + + /require-in-the-middle@7.4.0: + resolution: {integrity: sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==} + engines: {node: '>=8.6.0'} + dependencies: + debug: 4.3.7 + module-details-from-path: 1.0.3 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: false /require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} @@ -9848,7 +10899,6 @@ packages: engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 - dev: true /resolve-dir@1.0.1: resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} @@ -9861,12 +10911,12 @@ packages: /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} - dev: true + requiresBuild: true /resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - dev: true + requiresBuild: true /resolve-global@1.0.0: resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} @@ -9875,10 +10925,13 @@ packages: global-dirs: 0.1.1 dev: true + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true + /resolve.exports@2.0.2: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} engines: {node: '>=10'} - dev: true /resolve@1.1.7: resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} @@ -9891,7 +10944,6 @@ packages: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} @@ -9910,12 +10962,13 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - /rfdc@1.3.1: - resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} + /rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} dev: true /rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true dependencies: glob: 7.1.6 @@ -9923,10 +10976,10 @@ packages: /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true dependencies: glob: 7.1.6 - dev: true /rimraf@4.4.1: resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} @@ -9949,15 +11002,15 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.2 + tslib: 2.7.0 dev: true - /safe-array-concat@1.1.0: - resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} + /safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} engines: {node: '>=0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 dev: true @@ -9968,12 +11021,12 @@ packages: /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - /safe-regex-test@1.0.2: - resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} + /safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 is-regex: 1.1.4 dev: true @@ -10013,12 +11066,10 @@ packages: /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true - dev: true /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - dev: true /semver@7.3.2: resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} @@ -10058,24 +11109,26 @@ packages: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} dev: true - /set-function-length@1.2.0: - resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} + /set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 + es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 gopd: 1.0.1 - has-property-descriptors: 1.0.1 + has-property-descriptors: 1.0.2 dev: true - /set-function-name@2.0.1: - resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + /set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 + es-errors: 1.3.0 functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 + has-property-descriptors: 1.0.2 dev: true /setimmediate@1.0.5: @@ -10101,7 +11154,6 @@ packages: engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 - dev: true /shebang-regex@1.0.0: resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} @@ -10111,7 +11163,6 @@ packages: /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - dev: true /shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} @@ -10127,6 +11178,10 @@ packages: rechoir: 0.6.2 dev: true + /shimmer@1.2.1: + resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} + dev: false + /shx@0.3.3: resolution: {integrity: sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==} engines: {node: '>=6'} @@ -10136,17 +11191,18 @@ packages: shelljs: 0.8.5 dev: true - /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.2 dev: true /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - dev: true /signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} @@ -10172,7 +11228,7 @@ packages: dependencies: '@kwsites/file-exists': 1.1.1 '@kwsites/promise-deferred': 1.1.1 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -10185,7 +11241,6 @@ packages: /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - dev: true /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} @@ -10207,7 +11262,6 @@ packages: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - dev: true /smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} @@ -10232,17 +11286,17 @@ packages: engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 - debug: 4.3.4 - socks: 2.7.1 + debug: 4.3.7 + socks: 2.8.3 transitivePeerDependencies: - supports-color dev: true - /socks@2.7.1: - resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + /socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} dependencies: - ip: 2.0.0 + ip-address: 9.0.5 smart-buffer: 4.2.0 dev: true @@ -10250,7 +11304,6 @@ packages: resolution: {integrity: sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==} dependencies: lodash: 4.17.21 - dev: true /sort-keys@2.0.0: resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} @@ -10259,19 +11312,22 @@ packages: is-plain-obj: 1.1.0 dev: true + /source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + dev: true + /source-map-support@0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true /source-map-support@0.5.19: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true /source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} @@ -10288,6 +11344,17 @@ packages: /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} + + /spawn-wrap@2.0.0: + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} + dependencies: + foreground-child: 2.0.0 + is-windows: 1.0.2 + make-dir: 3.1.0 + rimraf: 3.0.2 + signal-exit: 3.0.7 + which: 2.0.2 dev: true /spawndamnit@2.0.0: @@ -10301,22 +11368,22 @@ packages: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.16 + spdx-license-ids: 3.0.20 dev: true - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + /spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} dev: true /spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.16 + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 dev: true - /spdx-license-ids@3.0.16: - resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + /spdx-license-ids@3.0.20: + resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} dev: true /split2@3.2.2: @@ -10333,6 +11400,9 @@ packages: /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + /sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} dev: true /sshpk@1.18.0: @@ -10351,11 +11421,11 @@ packages: tweetnacl: 0.14.5 dev: true - /ssri@10.0.5: - resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==} + /ssri@10.0.6: + resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 7.0.4 + minipass: 7.1.2 dev: true /ssri@9.0.1: @@ -10365,6 +11435,10 @@ packages: minipass: 3.3.6 dev: true + /stack-chain@1.3.7: + resolution: {integrity: sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==} + dev: false + /stack-generator@2.0.10: resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} dependencies: @@ -10387,7 +11461,6 @@ packages: engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 - dev: true /stackframe@1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} @@ -10424,7 +11497,7 @@ packages: deprecated: 2.x is no longer supported. Please upgrade to 3.x or higher. dependencies: date-format: 2.1.0 - debug: 4.3.4 + debug: 4.3.7 fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -10441,16 +11514,15 @@ packages: dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - dev: true - /string-replace-loader@3.1.0(webpack@5.89.0): + /string-replace-loader@3.1.0(webpack@5.95.0): resolution: {integrity: sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==} peerDependencies: webpack: ^5 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.89.0(esbuild@0.17.12) + webpack: 5.95.0(esbuild@0.17.12) dev: true /string-width@4.2.3: @@ -10460,7 +11532,6 @@ packages: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - dev: true /string-width@5.1.2: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} @@ -10471,38 +11542,41 @@ packages: strip-ansi: 7.1.0 dev: true - /string.prototype.padend@3.1.5: - resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} + /string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 dev: true - /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + /string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 dev: true - /string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + /string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-object-atoms: 1.0.0 dev: true - /string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + /string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-object-atoms: 1.0.0 dev: true /string_decoder@1.1.1: @@ -10529,13 +11603,12 @@ packages: engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 - dev: true /strip-ansi@7.1.0: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 dev: true /strip-bom-buf@1.0.0: @@ -10568,12 +11641,10 @@ packages: /strip-bom@4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} - dev: true /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} - dev: true /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} @@ -10585,7 +11656,6 @@ packages: /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - dev: true /strnum@1.0.5: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} @@ -10606,7 +11676,6 @@ packages: engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - dev: true /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} @@ -10619,12 +11688,10 @@ packages: engines: {node: '>=10'} dependencies: has-flag: 4.0.0 - dev: true /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - dev: true /symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -10634,12 +11701,11 @@ packages: resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} engines: {node: '>=10.0.0'} dependencies: - ajv: 8.12.0 + ajv: 8.17.1 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} @@ -10692,7 +11758,7 @@ packages: engines: {node: '>=8'} dev: true - /terser-webpack-plugin@5.3.10(esbuild@0.17.12)(webpack@5.89.0): + /terser-webpack-plugin@5.3.10(esbuild@0.17.12)(webpack@5.95.0): resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -10708,22 +11774,22 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.22 + '@jridgewell/trace-mapping': 0.3.25 esbuild: 0.17.12 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.27.0 - webpack: 5.89.0(esbuild@0.17.12) + terser: 5.34.1 + webpack: 5.95.0(esbuild@0.17.12) dev: true - /terser@5.27.0: - resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==} + /terser@5.34.1: + resolution: {integrity: sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==} engines: {node: '>=10'} hasBin: true dependencies: - '@jridgewell/source-map': 0.3.5 - acorn: 8.11.3 + '@jridgewell/source-map': 0.3.6 + acorn: 8.12.1 commander: 2.20.3 source-map-support: 0.5.21 dev: true @@ -10735,7 +11801,6 @@ packages: '@istanbuljs/schema': 0.1.3 glob: 7.1.6 minimatch: 3.1.2 - dev: true /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} @@ -10748,7 +11813,6 @@ packages: /text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - dev: true /textextensions@5.16.0: resolution: {integrity: sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==} @@ -10798,13 +11862,6 @@ packages: tmp: 0.2.1 dev: true - /tmp@0.0.29: - resolution: {integrity: sha512-89PTqMWGDva+GqClOqBV9s3SMh7MA3Mq0pJUdAoHuF65YoE7O0LermaZkVfT5/Ngfo18H4eYiyG7zKOtnEbxsw==} - engines: {node: '>=0.4.0'} - dependencies: - os-tmpdir: 1.0.2 - dev: true - /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -10821,12 +11878,10 @@ packages: /tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - dev: true /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - dev: true /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} @@ -10842,8 +11897,8 @@ packages: punycode: 2.3.1 dev: true - /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + /tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} engines: {node: '>=6'} dependencies: psl: 1.9.0 @@ -10875,7 +11930,7 @@ packages: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: false - /ts-jest@29.0.5(@babel/core@7.23.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4): + /ts-jest@29.0.5(@babel/core@7.25.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4): resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -10896,11 +11951,11 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.23.7 + '@babel/core': 7.25.7 bs-logger: 0.2.6 esbuild: 0.17.12 fast-json-stable-stringify: 2.1.0 - jest: 29.5.0(@types/node@20.11.5)(ts-node@8.5.2) + jest: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -10923,6 +11978,14 @@ packages: source-map-support: 0.5.19 typescript: 4.9.4 yn: 3.1.1 + + /tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 dev: true /tsconfig-paths@4.2.0: @@ -10936,11 +11999,10 @@ packages: /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - dev: true + dev: false - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - dev: true + /tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} /tsutils@3.21.0(typescript@4.9.4): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} @@ -10950,7 +12012,7 @@ packages: dependencies: tslib: 1.14.1 typescript: 4.9.4 - dev: true + dev: false /tty-table@4.2.3: resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} @@ -10971,7 +12033,7 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: '@tufjs/models': 1.0.4 - debug: 4.3.4 + debug: 4.3.7 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color @@ -10983,11 +12045,6 @@ packages: safe-buffer: 5.2.1 dev: true - /tunnel@0.0.4: - resolution: {integrity: sha512-o9QYRJN5WgS8oCtqvwzzcfnzaTnDPr7HpUsQdSXscTyzXbjvl4wSHPTUKOKzEaDeQvOuyRtt3ui+ujM7x7TReQ==} - engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} - dev: true - /tweetnacl@0.14.5: resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} dev: true @@ -10997,12 +12054,10 @@ packages: engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 - dev: true /type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} - dev: true /type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} @@ -11017,7 +12072,6 @@ packages: /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} - dev: true /type-fest@0.4.1: resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} @@ -11032,7 +12086,6 @@ packages: /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} - dev: true /type@1.2.0: resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} @@ -11042,49 +12095,54 @@ packages: resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} dev: true - /typed-array-buffer@1.0.0: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + /typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 dev: true - /typed-array-byte-length@1.0.0: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + /typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 dev: true - /typed-array-byte-offset@1.0.0: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + /typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 dev: true - /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + /typed-array-length@1.0.6: + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - is-typed-array: 1.1.12 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 dev: true - /typed-rest-client@1.2.0: - resolution: {integrity: sha512-FrUshzZ1yxH8YwGR29PWWnfksLEILbWJydU7zfIRkyH7kAEzB62uMAl2WY6EyolWpLpVHeJGgQm45/MaruaHpw==} + /typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: - tunnel: 0.0.4 - underscore: 1.8.3 + is-typedarray: 1.0.0 dev: true /typedarray@0.0.6: @@ -11095,14 +12153,9 @@ packages: resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} engines: {node: '>=4.2.0'} hasBin: true - dev: true - - /uc.micro@1.0.6: - resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} - dev: true - /uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + /uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -11112,20 +12165,12 @@ packages: /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 dev: true - /underscore@1.8.3: - resolution: {integrity: sha512-5WsVTFcH1ut/kkhAaHf4PVgI8c7++GiVcpCGxPouI6ZVjsqPnSDf8h/8HtVqc0t4fzRXwnMK70EcZeAs3PIddg==} - dev: true - - /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - dev: true - /unique-filename@2.0.1: resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -11191,15 +12236,30 @@ packages: engines: {node: '>=4'} dev: true - /update-browserslist-db@1.0.13(browserslist@4.22.2): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + /update-browserslist-db@1.1.1(browserslist@4.24.0): + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.0.0 + browserslist: 4.24.0 + escalade: 3.2.0 + picocolors: 1.1.0 + + /update-ts-references@3.2.1(ts-jest@29.0.5): + resolution: {integrity: sha512-ur9psM1Jvg67Y1ErSIX/zAG5t934ZfZwigB4hZwzmOwn4Cgez3sEoUUvSYvvxj4nLgWdkPKQVDL53MwA+DEndw==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@formatjs/cli': 2.15.0(ts-jest@29.0.5) + comment-json: 4.2.5 + glob: 7.1.6 + js-yaml: 4.1.0 + minimatch: 3.1.2 + minimist: 1.2.8 + mkdirp: 1.0.4 + transitivePeerDependencies: + - ts-jest dev: true /uri-js@4.4.1: @@ -11207,9 +12267,9 @@ packages: dependencies: punycode: 2.3.1 - /url-join@1.1.0: - resolution: {integrity: sha512-zz1wZk4Lb5PTVwZ3HWDmm8XnlPvmOof6/fjdDPA5yBrUcbtV64U6bV832Zf1BtU2WkBBWaUT46wCs+l0HP5nhg==} - dev: true + /url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + dev: false /url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} @@ -11230,7 +12290,6 @@ packages: /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - dev: true /uuid@9.0.1: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} @@ -11243,16 +12302,14 @@ packages: /v8-compile-cache@2.4.0: resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - dev: true - /v8-to-istanbul@9.2.0: - resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + /v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.22 + '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - dev: true /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -11271,7 +12328,7 @@ packages: resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - builtins: 5.0.1 + builtins: 5.1.0 dev: true /verror@1.10.0: @@ -11306,34 +12363,6 @@ packages: replace-ext: 1.0.1 dev: false - /vsce@1.83.0: - resolution: {integrity: sha512-gyF/xtCOFcKO+EvC0FQu5jPECHz2XKMWcw62gqwJJ22lVvlj58t49sWe1IGl9S5NpxCek+QMm6V9i/cDwGWs/Q==} - engines: {node: '>= 10'} - deprecated: vsce has been renamed to @vscode/vsce. Install using @vscode/vsce instead. - hasBin: true - dependencies: - azure-devops-node-api: 7.2.0 - chalk: 2.4.2 - cheerio: 1.0.0-rc.12 - commander: 6.2.1 - denodeify: 1.2.1 - glob: 7.1.6 - leven: 3.1.0 - lodash: 4.17.21 - markdown-it: 10.0.0 - mime: 1.6.0 - minimatch: 3.1.2 - osenv: 0.1.5 - parse-semver: 1.1.1 - read: 1.0.7 - semver: 5.7.2 - tmp: 0.0.29 - typed-rest-client: 1.2.0 - url-join: 1.1.0 - yauzl: 2.10.0 - yazl: 2.5.1 - dev: true - /vscode-jsonrpc@8.0.2: resolution: {integrity: sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==} engines: {node: '>=14.0.0'} @@ -11361,6 +12390,10 @@ packages: resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} dev: false + /vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} + dev: false + /vscode-languageserver-textdocument@1.0.7: resolution: {integrity: sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==} dev: false @@ -11389,7 +12422,6 @@ packages: /vscode-uri@2.1.2: resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} - dev: false /w3c-xmlserializer@4.0.0: resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} @@ -11402,10 +12434,9 @@ packages: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 - dev: true - /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + /watchpack@2.4.2: + resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 @@ -11431,8 +12462,8 @@ packages: engines: {node: '>=10.13.0'} dev: true - /webpack@5.89.0(esbuild@0.17.12): - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} + /webpack@5.95.0(esbuild@0.17.12): + resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -11441,17 +12472,16 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.11.3 - acorn-import-assertions: 1.9.0(acorn@8.11.3) - browserslist: 4.22.2 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.4.1 + '@types/estree': 1.0.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + acorn: 8.12.1 + acorn-import-attributes: 1.9.5(acorn@8.12.1) + browserslist: 4.24.0 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.17.1 + es-module-lexer: 1.5.4 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -11462,8 +12492,8 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(esbuild@0.17.12)(webpack@5.89.0) - watchpack: 2.4.0 + terser-webpack-plugin: 5.3.10(esbuild@0.17.12)(webpack@5.95.0) + watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -11511,23 +12541,23 @@ packages: resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} dev: true - /which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} + /which-pm@2.2.0: + resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} engines: {node: '>=8.15'} dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 dev: true - /which-typed-array@1.1.13: - resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + /which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /which@1.3.1: @@ -11543,7 +12573,6 @@ packages: hasBin: true dependencies: isexe: 2.0.0 - dev: true /which@3.0.1: resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} @@ -11617,7 +12646,6 @@ packages: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true /wrap-ansi@8.1.0: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} @@ -11630,7 +12658,6 @@ packages: /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: true /write-file-atomic@2.4.3: resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} @@ -11640,13 +12667,21 @@ packages: signal-exit: 3.0.7 dev: true + /write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + dev: true + /write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: true /write-file-atomic@5.0.1: resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} @@ -11677,8 +12712,21 @@ packages: write-json-file: 3.2.0 dev: true - /ws@8.16.0: - resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + /ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + 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 + dev: false + + /ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -11722,7 +12770,6 @@ packages: /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} - dev: true /yallist@2.1.2: resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} @@ -11730,7 +12777,6 @@ packages: /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - dev: true /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} @@ -11766,7 +12812,6 @@ packages: /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} - dev: true /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} @@ -11790,12 +12835,12 @@ packages: engines: {node: '>=10'} dependencies: cliui: 7.0.4 - escalade: 3.1.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.4 + yargs-parser: 20.2.9 dev: true /yargs@17.7.2: @@ -11803,33 +12848,21 @@ packages: engines: {node: '>=12'} dependencies: cliui: 8.0.1 - escalade: 3.1.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - dev: true - - /yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} - dependencies: - buffer-crc32: 0.2.13 - fd-slicer: 1.1.0 - dev: true - - /yazl@2.5.1: - resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} - dependencies: - buffer-crc32: 0.2.13 - dev: true /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} - dev: true /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - dev: true + +node-linker: hoisted + +strict-peer-dependencies: true diff --git a/test-packages/framework/package.json b/test-packages/framework/package.json index 667dacf55..138bfb42e 100644 --- a/test-packages/framework/package.json +++ b/test-packages/framework/package.json @@ -13,11 +13,18 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { + "@ui5-language-assistant/test-framework": "workspace:^", + "@typescript-eslint/eslint-plugin": "4.33.0", + "@typescript-eslint/parser": "4.14.0", "@xml-tools/ast": "5.0.0", "@xml-tools/parser": "1.0.7", "chevrotain": "7.0.1", + "eslint-config-prettier": "7.2.0", + "eslint-plugin-eslint-comments": "3.2.0", "fs-extra": "10.1.0", + "i18next": "19.0.2", "lodash": "4.17.21", + "vscode-languageserver": "8.0.2", "vscode-languageserver-textdocument": "^1.0.7", "vscode-uri": "2.1.2" }, @@ -26,8 +33,8 @@ }, "scripts": { "ci": "npm-run-all clean compile lint test", - "clean": "rimraf ./lib ./coverage ./nyc_output ./.model-cache *.tsbuildinfo", - "compile": "yarn run clean && tsc -p .", + "clean": "rimraf ./lib ./coverage ./.model-cache *.tsbuildinfo", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", "test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false" diff --git a/test-packages/framework/projects/ts-free-style/package.json b/test-packages/framework/projects/ts-free-style/package.json index 31dd227e9..b9f43cab6 100644 --- a/test-packages/framework/projects/ts-free-style/package.json +++ b/test-packages/framework/projects/ts-free-style/package.json @@ -28,7 +28,7 @@ "babel-preset-transform-ui5": "7.0.5", "eslint": "8.33.0", "npm-run-all": "4.1.5", - "typescript": "4.9.5", + "typescript": "4.9.4", "ui5-middleware-livereload": "0.7.2" }, "ui5": { diff --git a/test-packages/test-utils/package.json b/test-packages/test-utils/package.json index d49c7a19a..efe330514 100644 --- a/test-packages/test-utils/package.json +++ b/test-packages/test-utils/package.json @@ -13,11 +13,19 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { + "@ui5-language-assistant/constant": "workspace:*", + "@ui5-language-assistant/language-server": "workspace:*", + "@ui5-language-assistant/semantic-model-types": "4.0.11", + "@ui5-language-assistant/test-utils": "workspace:*", + "@ui5-language-assistant/xml-views-completion": "workspace:*", + "@xml-tools/ast": "5.0.0", + "chai": "4.2.0", + "deep-equal-in-any-order": "1.0.28", + "fs-extra": "10.1.0", "https-proxy-agent": "5.0.1", + "lodash": "4.17.21", "node-fetch": "2.6.9", - "proxy-from-env": "1.1.0", - "@ui5-language-assistant/constant": "workspace:*", - "@ui5-language-assistant/semantic-model-types": "4.0.11" + "proxy-from-env": "1.1.0" }, "devDependencies": { "@types/node-fetch": "2.5.10" @@ -25,7 +33,7 @@ "scripts": { "ci": "npm-run-all clean compile lint", "clean": "rimraf ./lib ./coverage ./nyc_output ./.model-cache", - "compile": "yarn run clean && tsc -p .", + "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore" } diff --git a/test-packages/test-utils/tsconfig.json b/test-packages/test-utils/tsconfig.json index 7396fa714..145c37903 100644 --- a/test-packages/test-utils/tsconfig.json +++ b/test-packages/test-utils/tsconfig.json @@ -5,5 +5,13 @@ "outDir": "lib", "baseUrl": "." }, - "include": ["src/**/*", "test/**/*", "api.d.ts"] + "include": ["src/**/*", "test/**/*", "api.d.ts"], + "references": [ + { + "path": "../../packages/constant" + }, + { + "path": "../../packages/semantic-model-types" + } + ] } diff --git a/tsconfig.json b/tsconfig.json index d4c8a50c6..7b5be75dc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,22 +1,21 @@ { + "compileOnSave": true, "compilerOptions": { + // TODO - align with tsconfig from open ux tools https://github.com/SAP/open-ux-tools/blob/main/tsconfig.json "composite": true, - "declaration": true, - "declarationMap": true, - "esModuleInterop": true, - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "lib": ["es6", "dom", "dom.iterable"], "module": "commonjs", - "moduleResolution": "node", - "noEmit": false, + "lib": ["es6", "dom", "es2016", "dom.iterable"], + "target": "es2017", + "declaration": true, "sourceMap": true, + "resolveJsonModule": true, + "forceConsistentCasingInFileNames": true, "strict": true, - "strictPropertyInitialization": false, - "target": "ES6", + "noImplicitAny": false, + "noImplicitReturns": false, + "esModuleInterop": true, "skipLibCheck": true, - "resolveJsonModule": true, - "useUnknownInCatchVariables": false + "types": ["jest", "jest-extended", "node"] }, "references": [ { @@ -43,11 +42,9 @@ { "path": "./packages/logger" }, - { "path": "./packages/semantic-model" }, - { "path": "./packages/logic-utils" }, From 218a14ca95804bd6e2720bf0d32fed6e3f91696f Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Tue, 15 Oct 2024 09:02:45 +0200 Subject: [PATCH 4/9] fix: added nx --- .../terminalOutputs/10328912034190447961 | 8 - .../terminalOutputs/11621152958808016094 | 8 - .../terminalOutputs/12099342359257843863 | 8 - .../terminalOutputs/14982787946498001416 | 8 - .../terminalOutputs/15725619364609846067 | 8 - .../terminalOutputs/16123343201382305479 | 8 - .../terminalOutputs/16315027627130776699 | 8 - .../terminalOutputs/17883363138592692128 | 8 - .nx/cache/terminalOutputs/2972496566099623290 | 8 - .nx/cache/terminalOutputs/3012064955541176717 | 10 - .nx/cache/terminalOutputs/3221225642769452975 | 8 - .nx/cache/terminalOutputs/3688954031168157299 | 8 - .nx/cache/terminalOutputs/4915091885760385124 | 9 - .nx/cache/terminalOutputs/5674665678479752944 | 8 - .nx/cache/terminalOutputs/5921150563841538939 | 8 - .nx/cache/terminalOutputs/7458892461117669299 | 8 - .nx/cache/terminalOutputs/8153432678899646769 | 8 - .nx/cache/terminalOutputs/9063001969434201139 | 8 - .../10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db | Bin 4096 -> 0 bytes ...0D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm | Bin 32768 -> 0 bytes ...0D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal | Bin 2978792 -> 0 bytes .nx/workspace-data/file-map.json | 4303 -- .nx/workspace-data/lockfile.hash | 1 - .nx/workspace-data/nx_files.nxt | Bin 105780 -> 0 bytes .nx/workspace-data/parsed-lock-file.json | 30434 ------------- .nx/workspace-data/project-graph.json | 35992 ---------------- nx.json | 54 + nx.json_noused | 68 - package.json | 58 +- packages/constant/package.json | 2 +- packages/context/package.json | 3 +- packages/language-server/package.json | 9 +- packages/logger/package.json | 2 +- packages/logic-utils/package.json | 5 +- packages/semantic-model/package.json | 5 +- packages/settings/package.json | 2 +- packages/user-facing-text/package.json | 2 +- .../package.json | 2 +- .../package.json | 6 +- packages/xml-views-definition/package.json | 2 +- packages/xml-views-tooltip/package.json | 2 +- packages/xml-views-validation/package.json | 5 +- pnpm-lock.yaml | 8141 +--- test-packages/test-utils/package.json | 5 +- 44 files changed, 500 insertions(+), 78750 deletions(-) delete mode 100644 .nx/cache/terminalOutputs/10328912034190447961 delete mode 100644 .nx/cache/terminalOutputs/11621152958808016094 delete mode 100644 .nx/cache/terminalOutputs/12099342359257843863 delete mode 100644 .nx/cache/terminalOutputs/14982787946498001416 delete mode 100644 .nx/cache/terminalOutputs/15725619364609846067 delete mode 100644 .nx/cache/terminalOutputs/16123343201382305479 delete mode 100644 .nx/cache/terminalOutputs/16315027627130776699 delete mode 100644 .nx/cache/terminalOutputs/17883363138592692128 delete mode 100644 .nx/cache/terminalOutputs/2972496566099623290 delete mode 100644 .nx/cache/terminalOutputs/3012064955541176717 delete mode 100644 .nx/cache/terminalOutputs/3221225642769452975 delete mode 100644 .nx/cache/terminalOutputs/3688954031168157299 delete mode 100644 .nx/cache/terminalOutputs/4915091885760385124 delete mode 100644 .nx/cache/terminalOutputs/5674665678479752944 delete mode 100644 .nx/cache/terminalOutputs/5921150563841538939 delete mode 100644 .nx/cache/terminalOutputs/7458892461117669299 delete mode 100644 .nx/cache/terminalOutputs/8153432678899646769 delete mode 100644 .nx/cache/terminalOutputs/9063001969434201139 delete mode 100644 .nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db delete mode 100644 .nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm delete mode 100644 .nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal delete mode 100644 .nx/workspace-data/file-map.json delete mode 100644 .nx/workspace-data/lockfile.hash delete mode 100644 .nx/workspace-data/nx_files.nxt delete mode 100644 .nx/workspace-data/parsed-lock-file.json delete mode 100644 .nx/workspace-data/project-graph.json create mode 100644 nx.json delete mode 100644 nx.json_noused diff --git a/.nx/cache/terminalOutputs/10328912034190447961 b/.nx/cache/terminalOutputs/10328912034190447961 deleted file mode 100644 index 0c84509ad..000000000 --- a/.nx/cache/terminalOutputs/10328912034190447961 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/settings@4.0.9 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/settings@4.0.9 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/settings -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/11621152958808016094 b/.nx/cache/terminalOutputs/11621152958808016094 deleted file mode 100644 index 35c007283..000000000 --- a/.nx/cache/terminalOutputs/11621152958808016094 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/binding-parser@1.0.7 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/binding-parser@1.0.7 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding-parser -> rimraf ./lib ./coverage - diff --git a/.nx/cache/terminalOutputs/12099342359257843863 b/.nx/cache/terminalOutputs/12099342359257843863 deleted file mode 100644 index a0bf331cb..000000000 --- a/.nx/cache/terminalOutputs/12099342359257843863 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/test-utils@4.0.16 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/test-utils@4.0.16 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/test-utils -> rimraf ./lib ./coverage ./nyc_output ./.model-cache - diff --git a/.nx/cache/terminalOutputs/14982787946498001416 b/.nx/cache/terminalOutputs/14982787946498001416 deleted file mode 100644 index fb9b07520..000000000 --- a/.nx/cache/terminalOutputs/14982787946498001416 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/context@4.0.29 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/context@4.0.29 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/context -> rimraf ./lib ./coverage - diff --git a/.nx/cache/terminalOutputs/15725619364609846067 b/.nx/cache/terminalOutputs/15725619364609846067 deleted file mode 100644 index 6fc24dd01..000000000 --- a/.nx/cache/terminalOutputs/15725619364609846067 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/constant@0.0.1 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/constant@0.0.1 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/constant -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/16123343201382305479 b/.nx/cache/terminalOutputs/16123343201382305479 deleted file mode 100644 index 891297d31..000000000 --- a/.nx/cache/terminalOutputs/16123343201382305479 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/language-server@4.0.56 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/language-server@4.0.56 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/language-server -> rimraf ./dist ./lib ./coverage - diff --git a/.nx/cache/terminalOutputs/16315027627130776699 b/.nx/cache/terminalOutputs/16315027627130776699 deleted file mode 100644 index 9efbc93e5..000000000 --- a/.nx/cache/terminalOutputs/16315027627130776699 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/semantic-model@4.0.18 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/semantic-model@4.0.18 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model -> rimraf ./lib ./coverage - diff --git a/.nx/cache/terminalOutputs/17883363138592692128 b/.nx/cache/terminalOutputs/17883363138592692128 deleted file mode 100644 index 234b13239..000000000 --- a/.nx/cache/terminalOutputs/17883363138592692128 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/xml-views-quick-fix@4.0.21 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-quick-fix -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/xml-views-quick-fix@4.0.21 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-quick-fix -> rimraf ./lib ./coverage - diff --git a/.nx/cache/terminalOutputs/2972496566099623290 b/.nx/cache/terminalOutputs/2972496566099623290 deleted file mode 100644 index 548c49451..000000000 --- a/.nx/cache/terminalOutputs/2972496566099623290 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/test-framework@4.0.12 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/test-framework@4.0.12 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/test-packages/framework -> rimraf ./lib ./coverage ./.model-cache *.tsbuildinfo - diff --git a/.nx/cache/terminalOutputs/3012064955541176717 b/.nx/cache/terminalOutputs/3012064955541176717 deleted file mode 100644 index f89a42e86..000000000 --- a/.nx/cache/terminalOutputs/3012064955541176717 +++ /dev/null @@ -1,10 +0,0 @@ - -> vscode-ui5-language-assistant@4.0.73 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant -> pnpm run clean && tsc -p . - - -> vscode-ui5-language-assistant@4.0.73 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/vscode-ui5-language-assistant -> rimraf ./dist ./lib ./coverage *.vsix NOTICE LICENSE - -src/utils/binding-semantic-token-creator.ts(14,36): error TS2307: Cannot find module '@ui5-language-assistant/binding' or its corresponding type declarations. - ELIFECYCLE  Command failed with exit code 2. diff --git a/.nx/cache/terminalOutputs/3221225642769452975 b/.nx/cache/terminalOutputs/3221225642769452975 deleted file mode 100644 index 9fea808e1..000000000 --- a/.nx/cache/terminalOutputs/3221225642769452975 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/xml-views-definition@0.0.7 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-definition -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/xml-views-definition@0.0.7 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-definition -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/3688954031168157299 b/.nx/cache/terminalOutputs/3688954031168157299 deleted file mode 100644 index e4f48cabf..000000000 --- a/.nx/cache/terminalOutputs/3688954031168157299 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/xml-views-validation@4.0.23 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/xml-views-validation@4.0.23 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-validation -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/4915091885760385124 b/.nx/cache/terminalOutputs/4915091885760385124 deleted file mode 100644 index 9f40372b3..000000000 --- a/.nx/cache/terminalOutputs/4915091885760385124 +++ /dev/null @@ -1,9 +0,0 @@ - -> @ui5-language-assistant/semantic-model-types@4.0.11 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/semantic-model-types@4.0.11 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/semantic-model-types -> echo "nothing to clean" - -nothing to clean diff --git a/.nx/cache/terminalOutputs/5674665678479752944 b/.nx/cache/terminalOutputs/5674665678479752944 deleted file mode 100644 index 6fc717a49..000000000 --- a/.nx/cache/terminalOutputs/5674665678479752944 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/logger@0.0.1 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/logger@0.0.1 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/logger -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/5921150563841538939 b/.nx/cache/terminalOutputs/5921150563841538939 deleted file mode 100644 index f4bd79140..000000000 --- a/.nx/cache/terminalOutputs/5921150563841538939 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/user-facing-text@4.0.9 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/user-facing-text@4.0.9 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/user-facing-text -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/7458892461117669299 b/.nx/cache/terminalOutputs/7458892461117669299 deleted file mode 100644 index fd7e53a14..000000000 --- a/.nx/cache/terminalOutputs/7458892461117669299 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/fe@4.0.33 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/fe@4.0.33 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/fe -> rimraf ./lib ./coverage - diff --git a/.nx/cache/terminalOutputs/8153432678899646769 b/.nx/cache/terminalOutputs/8153432678899646769 deleted file mode 100644 index f68b8a8dc..000000000 --- a/.nx/cache/terminalOutputs/8153432678899646769 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/xml-views-tooltip@4.0.29 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-tooltip -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/xml-views-tooltip@4.0.29 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/xml-views-tooltip -> rimraf ./lib ./coverage ./nyc_output - diff --git a/.nx/cache/terminalOutputs/9063001969434201139 b/.nx/cache/terminalOutputs/9063001969434201139 deleted file mode 100644 index 6ea198850..000000000 --- a/.nx/cache/terminalOutputs/9063001969434201139 +++ /dev/null @@ -1,8 +0,0 @@ - -> @ui5-language-assistant/binding@1.0.34 compile /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding -> pnpm run clean && tsc -p . - - -> @ui5-language-assistant/binding@1.0.34 clean /Users/I744939/SAPDevelop/git/ux-engineering/ui5-language-assistant/packages/binding -> rimraf ./lib ./coverage - diff --git a/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db b/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db deleted file mode 100644 index 7ee7c113a09428e4daafacb6e70a35d18573e608..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmWFz^vNtqRY=P(%1ta$FlG>7U}9o$P*7lCU|@t|AVoG{WYDWB;00+HAlr;ljiVtj n8UmvsFd71*Aut*OqaiRF0;3@?8UmvsFd71*Aut*O6ovo*4{!$i diff --git a/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm b/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-shm deleted file mode 100644 index 750988cea151c2733ed78956f2ddf36acd2f7801..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32768 zcmeI)Wo#Bp6b9h;eSsEtDeg{jx8m+vytum+cXx_QaV^E&ogxK_ySux~{l46g@ZgXTy0K>Zj6K7us=z2?phlzW?d{wSNA$ z`DC8v`6s`hEI%zjEkFPLI>P4BKhL9|*Jv(|b((YS=*+iYDSz1h>V5zB^}(f|4t@(0 zFaZ-V0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V z0TVC*6EFc2FaZ-V0TVC*6EFc2FaZ-V0TT$u0)z|NJAdo5Fo6&!Ajj@1Sx^TYNSPaxFZv?AqR3H5AvY^JWv=# zQ5+>v8f8%)6;T;gQ5`i=3-! zi}SdQtGJGvxQ)BGkB4}Sr+AK+c#XGskB|6_ulNo!3|$$H5g3V47>zL)i*Xp2@tKf` znUu+ylBt=N>6wXHn2kA@i+Pxj1?a)TEXv|6$c?8@%!!CvgcejLOh9L5nG#W5Vm3H0G)PUUpY0#yvf_V%lmxD$9&4?e96~*%lG`q z&-_X%l)}hW;S@oU6h+Y#L$MS`aTQ+)l~_rYTq%`W>E*6W%A#z_pN9{p6HFf=#POIjNurG(HM*In21T3f@zq6S@6YN%*R43#!@WD3arFh ztj9)d##U^{PVB~B?8iX_;0TW4I8Nde&fpv_;0mtc25#XF?%@F*;R&AM1zzC|-r)m2 z;S0VwHrEqf7?$A~k&zjd(HWDm>Be|Wz(h>KWK6+SOv7}{z|73b?99pB%**^N$U-c_ zVl2T@EW>iFz)GybYOKN9tjqfJVk0(TGqzwWwqZMVU?+BAH+r)td$TY5b1;W;I7f0c z$8tO;auTO-8fS18eL0u&xsZ#wl*_r2tGSlzxsjW>mD{BA!f%v9%SB-oUJ(^pQ59V=6MnAHAz!6O*1r0zM8A~TByZZsufzP)mp3d z+NjOis_ojT-P)`DI;a30(J>v@NuByFGpo~YX*I-sLT$joQlPWCs=Ioqm-?um25E?f zX@o{;jK*n#d^A~8HC;0`TXQr|3$#c}v`qe5r8Qco4ceqF+NK@ar9IlG13IL`I;udO zP>`Ivr&^eR37CKhn1BhGfC-p@37CKhn1BhGfC-p@37CKhn1BhGfC-p@37CKhn1BhG XfC-p@37CKhn1BhGfC-qu?-Te7zUhx2 diff --git a/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal b/.nx/workspace-data/10D82DAD-D5F4-51E4-8666-D1100AA33E1D.db-wal deleted file mode 100644 index a53ea122f88f40300aac1be1d4c3b11234409e2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2978792 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%0AB#U z!1VS7&bGx_RO(N#(@mxRQhvCU9Vr!xqeJS~hVTV){kKhlq7ns_W7Fz=W5C8!X009sH0T2KI5CDPwO8~xrCa@p#1@1NG3rsU#;O8Iz z-4U-p1ytrw z(9KO{{>_E{Zap+(FgHX!{ndv4)ggR=q!RySBZaQ5*`C6VDyPoyw5W%lNs8_h++jqX z()@f1Jv8yICj!71u&>Nke1SK2T=?JT-h5goe1Sb#SMgjB009sH0T2KI5C8!X009t~ zZUo>9>=R$$KI1%s8RH9dzxTwqK6v=L-_?DAX0ioRltD1v_IbP>5C8!X009sH0T2Lz z<_W+TfG+@FV5~22Zl%nhFrUs;b{@|6Q67DvE892FoiA3)*K0!f0PlOO;BAOHd&00JNY0w4eaATa$2z!#W8U*P`83P@-Wv1WlU z@ZrP${pf9_*PlMd7npDofwl$O?wI~Z0bU^pfB*=900@8p2!Mcz0DJ-X0<*&xc$>|r zo!?Ww$CVUPI!Z~8dCD=>P@~ZPo}pY{emi`DVmz(C_FI&7u&ow%ur55qW}DhAYTaj? zd6H`V1e!}_&cKtKW%K<`vN^DzPRv-r9b{V_yYKh00JNY z0w4eaAOHd&00JNY0<(z#d;ya$@L=>ny#2(QqrSlZJb3k!?>Y2;%XMF%Ia{D@#cVoW z@LoUw1V8`;KmY_lV6G8>F92U)&wPRNZE+eEqG?dPkgj6XYVIhi_dC)z6;`_j`iD!D z;9qT*ULC?0hq-hi@I7TTBI-T-+j7N1cdntre`-|WpL@Q*>#z9Dwi}+f^8xq*bM3PL-Y*D%00@8p z2!H?xfB*=9!0aY4=Y4_i!55g9(8gfhMf?2%z3-3CDJ;D7scRni%(nNB@dcX57HFdk zg4ulp;oX4%2!H?xfB*=9!0aXfUtmuA0vjsDeusI1qJlKzu5vi_oJ-eKiXP6FN>tMx z?dx9^!WU>94qq+vuL;kw1r11`s)fYX??Tx_vn3rzx~ZGo;m90 z3x?qf%+e~Q+U5100JNY0w4eaATXNuk4_Bbnp4iUQNA z|J-q1X6&f0R-~&X)>R>VfuUSqe*3`C)>@hW+)9~W#^=+SYS@j%*xH8R3lu7`3H2I( zX<(pODh$>t{HNQZik_|hSEu4gn+ z8h6p%`U1BceW-WU=7T-}Utl(^^LQ^H00JNY0w4eaAOHd&00JN|t9*g~jI4l!<`)aT zz+gVVdxJJTIYZ%RF$ zx-NBoD&2NRTUfCLT6f?m0|5{K0T2KI5C8!Xn7IVt3+z8%;6htawcq6`@ch76T+)A0 z-JiSCRGFqE|5AR(XpsMk5Wc`@m-H#&+iXVd{4`+R<4Ouief&y#%u|jDW)#}r17ELM^i(&M>lIYMPB;iRrmty9=!M6ryl;HZFOIuIa{DLi0^gy9S{Hk z5C8!X009sHftf-8zQE*tfs1UmzTFbi=aLH4G*aHDPvD;7#xCFDKyPoY@VYXDFVHtw zDCSp(=h^HWD)k4hqN^Dxxd^!Qe8-$hPaq3j*^yGA2wxyutLxX}=OYzjES|ODS+=-{ zjcwvpukd&0dkX!9hD3mw;|pBzSO5IUc_*&D z8ot0xS;O%!3m00ck)1V8`;KmY_lpcw+w*B5vw3JXYRrm^4)%op>LLK&@l_M$Iv z%eBA0YTk1Xe`<^`&_uRCD`gNgvmfHmfB*=900@8p2!H?xOiu#)$rpIL%}#E&e5wow z%Hz^?U0>4Ra%C)D_T;M}=4-<)JztQV!UD-mgy9Qthqa*GxXvsWl(ZBct0T2KI5C8!X009sH0T2KI5C8!XnE3<_YMX!LVW)4{blxdvpR@jq z(_M8!Z~~{dHJ`ri(fa~VsJGv6_T`7J(!M}T<|T{%#TN*G00@8p2!H?xfB*=900@8p z2!OzBA&{PbWJ~?#KpVZS1^TUx-WT}Dv+sT4nKSI_e-Bm%_8_f4D#fP8_PFTfu3{^)>b*1cQ%0tct=v(jJ4@XYDyFnv#E zOXl#*HJK;VPi0!tGILMnmehUe1?es6BT~<$&&ZV1*UYd*5HA-5KmY_l00ck)1V8`; zKmY`0D}gAjK7PZ``oSUd-Ffj_dDfkk^Z|8b1@v%%gfWrUcQvy8nlI4c3;gB6!o_F);+G$8@CCXv z2d8(Xccwd*-jsSgbzSQGRJ!eswynp9dw(ii=2$sB@xp}r8PJ<`LuHr%<`HbIR-M;`=i1@|O8=LPE|Wc9dcMmXUr)<0&dM0h_vQLa zg|2KLc{at`hR&&M$d!6<2KhKa-~^5<9mP%cYxn~21x9C6)WrzBLlyH4vl1?j%m}Vx zcXCX7R^u+3EnPmCADt*dYn-jWNBanVdhjFv`{>m#tb{KxdslzFGY|j)5C8!X009sH z0T2LzSx+D;=1+w$@I$>Nx>g@Q5fr`v)&3K1_*nNvBLosAN?P|ukIVpH;Lq%NC;iRV z<9^cM3p8a5WV&blk%c!10w4eaAOHd&00Og)0DJ-X0(tlX*`A?XUw-?*5PX6D-jQ5y zKARgJtymXx)!!P<4{gg2RXvDx;TbmD)NUn+@1|mPz4Tog7$}wsgVjxShNs)2i`F!Up65zmD9(gr)O*1K?oIqg_pvYV__;^_UFn^}Z-Fl`>lS^yArJro z5C8!X009sH0T2LzxkCWHfG4D@nB>&85zsHvx4x&Lc!5jts8UKU=(j!J@dE3?=mF(> zTuFM!QA+9yjvQsIyHlUVmhkIW8V;9)u}8uA6+^q0@uFFbtz?PGm`X0in`ltD0e z4l%q_5C8!X009sH0T7ri1mFw67l1ENf-m43V-x1MFK|g^x&f8=Y21qB6g8nZ#YFgG z;tGFvzNgS%Xh;N@IljP0{_6Xg!Oz`$6nuf%vex5$fB*=900@8p2!H?xfB*>0K?3jv z;0rX~%dmbFSrPFz1}o+Z{PTe~wjTc0|9W?WFEHUG0&NSVcg?|L4R09)KmY_l00ck) z1ZFq^_yX_+;0wSP;IqgV$We1Xkh zf8qMeZu^Jj4Zc9f(wkC`r>;w#pGvpg(H6F?Xnm#i*47=Z!P4O+FK2G9*aGRDbNQgd zdj|m!009sH0T2LznMnY?0DJ-X0`LX)uP?B9O6L*47vQGsgW-H%uD?|1%JvO(=Zo3W z<%9X*>Qo3?zij<|W%kC0c3u1EhO=%u_?z;m9p8s9Ff&(nylM~t0T2KI5C8!X009sH z0T3Vp@C9bMFYsveHym%6u%^Hl7=G=|U+X;f?5~aW1)8%3(j7SZKmY_l00ck)1V8`; zW*Pzb0`LXk3&0ncgfGx#vrX+5weB;{Jn2(6zoLPF6xVMmR@dA3O9KPNQem)KsqPHn z3wRSl)3l2DhU|ljqa+2cT;V7;2!t;k76{jy3SZ#={m~h#?`!-0cfc2zX=^%OF9?7D z2!H?xfB*=900@8p2-FC`7nl{kz>g1`FXp*)Vk8F|hWgFL2X!Z@T7t zL%%nFtS`_^wm_OP2x@yE{sRO+00ck)1V8`;KwyRtn8Ch4x6L-TTl68>rE-~&EZ|hS z3=}igD@TU&L)o5OSE0W*TgvY!Rm+vjLSeJD?G|%f&yidSA-L=M(s%uB)O_2W&yEyC zwl>8*H#}SzE>V|m_36vQi)^-@UWoL$l=N#rwO5}eoO5HvDopH}`T{DW!h5l~BP<;uj z!VR`Kjb4Joyg(5J#$DxbdLPm?y@cU>sYF{C?M_}5o?qDn1-}dFDn_MaM+NkY^i7+f zcQF>^>hL_9ozrf4fvad6QgT7h_k70-Oj{t3)GIwwDilXw$0_04Y<2-{MEM?9^w&YJ zLP?K#$}w%ElplsK0AHYx-#(nhJc3%jKzrYo=e^*Pzk)9?LzZ&9Ob`G85C8!X009sH z0T2KI5Qr1l`@X|JDyA+(WY-imKuXH^;31 z(oada>1F+A^pu2~S=RTXM-uK)S>MweOStu9Js3R@znx?~5N(Sp^}_Ldx=-aY$Jg&h zS@%bexKiJl^c1~UCvaT45yh?hqDMTsCq;MY7~Q)Rbi0rRl3Djww&r?Fw_i9^{`Z(8 z=(ddYUHt+Q+A^&D;|uKg`Fq;)^H&_&;0sJRi9p)|smJ5HB7O%1KmY_l00ck)1VCVV z6M!#(d;#PO%pqSOZ;Ok_43Y5*QM;u4`JO_5p&=1q zQyzZ_jhkU=!FjW0@Hg1$EyPY5C8!X009sH0T2KI z5CDPQ5YPo^<_q7Unl;t49ia>8+_8Re$b5I6PgQ=!Jx@^UiYIhU+qzRfAtA-i`k{Ux zp<~B_FEG!YDqrC7>E#QY|GgL1Ec|lekp^Gj{8YN_j<&FEMe8fAx3=zR4VDfsc{y`) zraNhzzQ84SfAr&j@|Cvx;R{U5g&Qvl1V8`; zKmY_l00ck)1V8`;njrvRAeMo--}42YFy;$PGhg7nZ~U_tmtA^XOM@@alr4}tznPsA ze+C3V00ck)1V8`;Kwvr%fG+@F0KULp^#yuuK?4$!baPXgzd9`h6nbdlT~7pnFHrLZF7|(U+cUr0 z_Gj<~rqgMGJnE+I#bzsINz7+ zFBQ77eFNS3Vzqp|CWJ3g7%mZ*F>U;%fq`PFFj%YbZ?;7jDHVPYFh;;xKpBTL*3k6= z6YF}3AHG0BQltr6<1U&lT|Sr}uKq31Vr1*@E3-E~wCmbOH+<#4gY!y%`?0&=3rvG$ z8ZQ9^KmY_l00ck)1V8`;KmY_LM*zOS-t`5ZimZU7c?7e-7x?U@2S0byJ!c));0sJR zi9p)|ZFfv=cg3?n00ck)1V8`;KmY{x9|8CR@C9a3_ZerNq*_0L=F*o< zwDH3iaHTI4XF@W;$&cWkY45Cy5qi%o=1YZv{+efTag?O6cYJ}P(zo5a{7*lBK74`w zw>sk|g8&GC00@8p2!H?xfB*=9z#bBSFEACpz|)lp0?ZYT=S$CbndAFXDrL=TU*H}8 z_`aiEvl`A15H z;%JxjDIt7;dTM{9LX5?;Hq6`NB5LKAuE%tp-=Si)#~i_ZW0@bmK)&5#9;F@7Udid! zfZ~F56ftpyzdPSk=r1%>_%}rre%jcy_XQ5{Prd)nQ{Heqe1UzwDB}l$00@8p2!H?x zfB*=900@AOSTt1V8WLNpDE7t&RXTFo6r^?pbCrow91Kz|feUu~CO z9l{r=1ov+)^miBfd$WVNA?oR`;pwr(Swz^Q#017YMw$J>4>$`XGZBU_z#Zngl0p!C zPZ^DfdJq4$T(QudYpC#F5>@!;o-gpmzxmKzM{j)T7We}DYAwdk0Ra#I0T2KI5C8!X z009sHfhi{dUm$jm%6c}^0^+SI7JLC~f!+g0=M=urJAe7FZ~xW74Zc7V*#d2pK``Ze zGByYTAOHd&00JNY0wA!L3BVVCFF?LPu~O`Jm=`E2NHgv#hf~kFbWNq`;e4q?HSN*9 z{#7A-fyUwR)iVE@u-6teAc3mZp6gO$x(EU%a9pw}xQQ)%0dgUvqK^K+gs5KPzigz? zwKdyQ*ilRA&s8e?k|rbw_yWE8Y&~$IaTm>&E+5Q~9>KKG*!p|)zQDtOdD`}m{^;Bf z!57%eOE5MM0w4eaAOHd&00JNY0w4eadyl}}^#z`bW(Xwow7?h8DGKq}L+fGM4I6xc zr7wKq`-dF+%da%}0uxRm(6&J9t$S~m#+E?<1V8`;KmY_l00j090r!58SWS!cVY z9LXHVRTP*`{pXJBGGj+|wIW?DvBDR~_6+6v^4kZ7w${r0TPkIK8J|yQs$n-4V{03N zFHoq&Ce&;ErGbHBsW4cp@Nc$77bz8f5HLo-SpZ*PI0jAAD&`xq4=#?(2(D;^qH=>k z_|hSEu4gn+8h6p%`U0;#Et`Jh?aMa67uY*1FSZH-AOHd&00JNY0w4eaAOHgUfWU0` z1)h(rfQ0533%&qp0SQ@&){mlig=Tz#QRSZB`;@g&U9xEPVY+Z zOm{53DfM{jy43lpblV+mVZ|0`-LVh$ZTtuj009sH0T2KI5CDNGB>-Pw|N8>{wxDXi z%T?g{fv>ov|Dw7-ccrN^O-cTx{Ekw!-nt@$FEH9AeM(rc8MX5#44gB;j6(b23mDy! zVy?e;Bu8!PG#g=CZ9Kxdu*+tf+AWIuXPkMGYW+&l5DH%!Hw0gxGu#wa_!C5a)81K! zwvT-QYxvIP8j4`|)RA7>@M?nzIF3gMGP^<7a^Y z2!H?xfB*=900>M40r&!Y?h6dqY<;^Wq|c?KUjxeV_vuqOH+K0J2YP#Jh1ZoKe1X2f zLNUKOywqmrP^mvYM9x%9C6I-#>`19lgfEb-)%EM~^N|WM7SGx+Z;OjaPLZz1be-R! zW`2)3g7#S>WcUK@R)Ujn;#IHkcjtQw{e^}^fSKb99C6wYFTeNW5AK35Fcs@8wgCbl z00JNY0w4eaAOHd&00R4kz>M+*UW~#55}Ii&_yY6AyrfV@>(RaF3w+_@?cX@^?(7j` zeSv1O1zIVCV886`_@N*G0w4eaAOHd&00MhJU_bi;gEl+4-SRmNbypsjuIu`e2A3;i z@v9NIGMA&nbqInaH_IyEd3JWAN5r!|o9p<`{LJ<7joK)%+ z{%yHpp*z=5;lCtG1ekliz@4A2!H?xfB*=900@8p2!O!; zB`_U*fuHCXmC$oz!57eE5@H;!A4eud!Vt%)_66qY-Sx`sjSua*_R$T_g*UK|gwMaM zeSwzDvljh}FAx9$5C8!X009sH0T2KI5C8!X0D+lL;Gop}BM&=$!>032Is2UTXPoY; z6M_>sy{-B5ZI9j;_-p?oj~;O7$A7DRftJim7X6Da5C8!X009sH0T2KI5C8!X009sH zf!RVJJ^#p-`pp5Y1uW2SZS=mt&+fWl*Pq<+p?B*C4q5U=Yw53+ie~c#=#S$I1V8`; zKmY_l00cl_pAuLeUS0raK<_0+>fY;Q+--IDo^vKv4rb z$YlN;E>c;tn?RBU&-*y>FF?iPi9Nz@XR%tC(}=5TGBFePv(}?edz`1 zE$Jgt&!x}El+)Mj(?t+J3*BZ4oGFf$XrfYv2ESNekP9@2DIn#oENUOnq!+C3Y5feW@=e(&pc zeClHD3mmrOuvhI1&{OaQ0w4eaAOHd&00Og%z^UP|E%LgYMHPNeIMS8MRUV`MRe$1g zmad5v^9>WR;R{p?g(@7h*~#se&#CEJd0e`#s}0@Vj2iFBSD(8!?6%p)c8fZZscqY# zPq+bh1q+n9NIpWt;IlosE^3Rd0+X|NY0H_yW&7^Z*4C9%CO%SRPA@U3OqmX6{pt_P~D%q(zJVZ z4fKzB1Mme3#ZiCel(1kkYUlUjLbwTLDL-6-FW?*9l47pEcO=)F&(h(ut+v~)3%hK# zsohE#tY-pUukphdh+UXZ3@u?LxwvAU?G<0(A3pKIr;j=ATW4rr;IP#DV!lA?ed7}b zU<}Nz4?cJ|AOHd&00JNY0w4eaAOHgUhd@;PPq+bT{S3aq_$C?a`G{6RSf=${^ay+b z*Q105PO%7zB5CPvrS+pIMWGpA;F#2}uPQ!$&Dq))IDGM4lkf%TN%#T*5C8!X009sH zf&ELMGb}}g6pvHKCDnbY5F98)m42^@0)KbDr_f&*Q{aa$kgb&rbHl@xX5nhB{iJZc z?NY7XC&Y@=hfu0_dxB9BznM}ye1SqS4_~0VFRczQwb?mT>JP}qq2xD7773?A)-k8j zlXyY#|05;%0tJz9kak2W#8^CQ!@MmnA~{9IgYQfg>)OE&U!dU{+r+D`MZ}hp&Tvy@ zVTxavPrS8#>t^a{95NoEfUeL4>LN(zFJgUj)hBhViY+6@RSBFnsSk@!a1C%2$ zd0*hh!R2l5U-`o~YhR#!@fDNu1?Xw`0s#;J0T2KI5CDN!N1!tti3%yySnWF$tIj2( zIw3V$GjHNTO2W`-_yW>#nuD&0!}VY;>ebi&Eq9uEI(&gV@&yLTdRP^1 zwZ&;vh)!^~O-C@LBt${=@CBmw{hEu@QJof%9n1|;jlPDb#};Q1;e_dTCc^Lq8ZMVj znCcb&gr($?XklXUYwU@)HluxkOY+Zm4_$ctCE6EgPn|m{Ux1#5FAx9$5C8!X009sH z0T2KI5SY^hqC$84R;TrI{XjyO6MTV$@J;vv6^SGW7^A6~G>A}nl+8-Lan|1S1yHij z#ArpjT8ds37AwX6ga|iNRdhICD$!tv(fts-7_F48DMUW%kC0c3u1EhSP8R_X{o^x!^AC z3%ovc;y7O*bz-a%9UKwBmwKk`^6Xd=e}jvUA6N1+q5rm#G=P0 z?F-OT@dW}P00JNY0w6FA39JjZM?uait1UMyT0oQ`iM-e{p4A2_yW>(T^b;vC^^ftJND$Ob=b9Gx6L-TTU1%3 zGOQyc3%Dy-pqTNw@CD!t)WY@a8cEcI-!qi!%WoeT+FC2~Z>f~|$=ntW4SMr@mpQ)P zJB|Ane1Xb^tm)XT*Z9XTC7Ubi8C?vISLG+(7JLD&Xctv(5YY4;huREW&uF4F?xGFm z8GT%__4lYR@Xqu6@88gI$;sLmI3jiAtMvtrOg)!ABU4Ua17lzseh|b<0s#;J0T2KI z5C8!X009t~906VEPPn0J{Q|xKWg${VtPq0h8+*R%TeoOhK24eobbnd>ejj{+%H9$m z6KOrJkJ@5tS$@l^R5C8!X009t~8UpLW9k!s# zsLQ1al%x+19`{`ejVImER8BFJM&S#XfYobRu@LD~!(m(GiN8-3eor{km5L^;>+w+V z1;X{VOYsK2<9dqIP^`eG+4GEw_{~f+P~o7>PNrwauOCc*Pw)kD{iO~{@-O9gl&ZDu z6=9#vI@_&;QEn!T)eiRR29Ph1g)d;#AZm&Q%|_T(8;`Iq?26R0gbP{IPFFw2!WVF* zFBE5_InlioQk|N}h{ig~tIe1VZQzy9F!fByV4+86k})S{X%kXn=u)AwYy zOqehLV_<4N|6wa200JNY0w4eaAOHd&00R4(K&8t)eh1e2C47Nc$By-whQjEkAbf$b zfs)pf(QcG5QPO&1ruYJX9zJ!*`|tkKFKA!j_ZOYHN4@|(9bX^-0w4eaATXy1tO+l- z*+sgFCz!*f2q+=m^BB37#wx$5G6P?rMyB2tT(3SQgh-d7LQ29Uu!(C~@C8Uk@dS68 zsra7+UtoDSV6*iUbRc~$CH)$3U-=X~&y8Ka#ev@5TH$qN*l!D}_PYs@Yo@&wzQAxv zdlLk*(3Kr26^f&C5l#sUHlz4|Px&5K^w&YT|4Mo^tiv(EM7{uX1nsjXKDBc%d;uXj zMNKFg`$9*!iC2ALiY+Cb;ik&Mr1k~gu&8YheF544zCZv3KmY_lV1^PnIoxTpv#9Zzve5%B84H->Q7Sd_jWxii z>NK`;1z#XGK)zl{iHAs!M1>R;IKJaZM$CQ3qbw`dMB^oV0X-g_N}`MkSpogS9Y*uf z-DV2@%fgK|qksTLLlGRV>#CIP4_}}fpVkaP_yU84Vt!S))fT7GeyH~y=_*Fi^p2u) zrz4Fa9ArI2W&di*!Rqi*o1H_Y{(#ausL(Gdb%N6z0LKeVrCIm_0cU|^CO)x6X>FLd z1xakKj0fMDHUeLO!eyA}k?l8^e1WemIM_Ps|9t8m?F+o2?SV=90&Ndu$}k3I=*M8Z zY!Cne5C8!X009sH0T7rS1azG{;pVROYxn~3s8H)pO(kLK9eja#Zo<4u>#0aCp*g=a zDV1)h27wdM)L%#O+29NO{@E++CpLZi9PJAnx$yQq_62AY_yPeC009sHfqh9}P56$= z&}ola`2$8pE5w!^>H8V}RzQnDuOt*l82myag4iEGm8u*VkU zuu;aJA~T4RYRIafFbntsg|4mHp2ChQ@Xjz7sb_j#jG~wnMxs9rP4GQsJTcVQxCHg= zlFHWRoGhBM_a-du&f38Kped<@Z`(i-FefZiyzRwz|jl6De(npGx!1l5C8!Xn6(5>39pD| zMZ4Uk0BQ=KrZzsIs1z-XoqUE_(eMQ-V6;K6FFpv90+Gn0L zl~W9*QTPHTVDIUEoWP65kefjMJLtCpz)`VNC4qMzGH=RS^3(yb>N_jN#sh?xv3%KM)(qSqj z6P)}A-b5yk-ZRIUXBSt@v-o65(_ca3E}AV}KA0a(2%(Ru4Zgr#f9c))&CP%OUF{1T z-S+-5zChdi$0iKG7?`ym@bSh#00ck)1V8`;KmY_lV80R2_1uIz&DL+=3(QOCJ+gip zaY-0c3SS^$W+r?Aouc5yZcA7X(*fV$3;gVftDnDN(*>W=zQ7yp=cdRPpbg;*1V8`; zKw#PtcuV*$ThORz8e^!exH@C8Qerya3T(QCrXZAPP_l_QwL zr3h%Eyhkb0f*Z?#rb*H81!`n!1?!G_^(i4lx)c>sJT9nR-KPizYMWM+4B#~p2moJz zR1}Ybyql@`!xzXe4+m_vo`Mdf&!wba1M187bwY}<%a=~2y|vjV@CB+R`qkm3Hlsz! zi%Z_7@@LYTREQk5gaA3yMhp%ce1U2#K<(T+&SL9|qH4$yWSq=3$_7vhzCeFz%)%5~ zN;<<$m4zvOVQ$(x>&x6e_6645{WqnL{^P(h?F+oItv}HhXzNd%m^mEAz_j~-j~4_2 zAOHd&00JNY0w4eaGlD>+_#eM3ZT%L$KvKh!^)t-{zQEWf8SD9IFG>i@w4RF|fiFOn z2q8I*QJ}I9-6|8-kD_>m_-%=}FVOZ!m;7qr&{u@^1&*)XqD!x zBx3<{JepF(d}9p|z5wOPJIrUyH!3If+DAM@dL$~OP-C_4P@6O{_i4}OiZ!t@_yT19 zB#6Y#6#SQk8*N4b0SWPB%{(2x0DOVIK}tzj6>hDJG)TA>YjRP7FECuK&?l}*tHT~! z(3(W!B9x;12u7Lxg5(qyNaL~}Ta?y@d0UXgMxvm{be-R!=5~)cf*cpqUlV)*3YTHz z-jBP+Hu0*jax>Z&_{1*;|8%1zKCgX&W7^)fr@p}3FqL3RF9NVJ5C8!X009sH0T2KI z5STdxbagV}_O4iMS*LoWd7~hibwXcvK%>dSI@izAxswlDay4n(}Hr z5lmft6Q(<7e)t{&1&+0Qr_dLmjo}LfKmY_lV3feBvQ;UpxQ@p>mvW

-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 z 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 diff --git a/.nx/workspace-data/parsed-lock-file.json b/.nx/workspace-data/parsed-lock-file.json deleted file mode 100644 index 6bb48ad22..000000000 --- a/.nx/workspace-data/parsed-lock-file.json +++ /dev/null @@ -1,30434 +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:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.3.0", - "packageName": "@ampproject/remapping", - "hash": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" - } - }, - "npm:@apidevtools/json-schema-ref-parser": { - "type": "npm", - "name": "npm:@apidevtools/json-schema-ref-parser", - "data": { - "version": "9.0.9", - "packageName": "@apidevtools/json-schema-ref-parser", - "hash": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==" - } - }, - "npm:@azure/abort-controller@1.1.0": { - "type": "npm", - "name": "npm:@azure/abort-controller@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "@azure/abort-controller", - "hash": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==" - } - }, - "npm:@azure/abort-controller": { - "type": "npm", - "name": "npm:@azure/abort-controller", - "data": { - "version": "2.1.2", - "packageName": "@azure/abort-controller", - "hash": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==" - } - }, - "npm:@azure/core-auth": { - "type": "npm", - "name": "npm:@azure/core-auth", - "data": { - "version": "1.8.0", - "packageName": "@azure/core-auth", - "hash": "sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==" - } - }, - "npm:@azure/core-rest-pipeline": { - "type": "npm", - "name": "npm:@azure/core-rest-pipeline", - "data": { - "version": "1.10.1", - "packageName": "@azure/core-rest-pipeline", - "hash": "sha512-Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==" - } - }, - "npm:@azure/core-tracing": { - "type": "npm", - "name": "npm:@azure/core-tracing", - "data": { - "version": "1.2.0", - "packageName": "@azure/core-tracing", - "hash": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==" - } - }, - "npm:@azure/core-util": { - "type": "npm", - "name": "npm:@azure/core-util", - "data": { - "version": "1.2.0", - "packageName": "@azure/core-util", - "hash": "sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==" - } - }, - "npm:@azure/logger": { - "type": "npm", - "name": "npm:@azure/logger", - "data": { - "version": "1.1.4", - "packageName": "@azure/logger", - "hash": "sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==" - } - }, - "npm:@azure/opentelemetry-instrumentation-azure-sdk": { - "type": "npm", - "name": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "data": { - "version": "1.0.0-beta.6", - "packageName": "@azure/opentelemetry-instrumentation-azure-sdk", - "hash": "sha512-JP6TJ7vDNX6r0gN2+EQBINTNqZ86frl1RAj5STtbLP1ClgIhcdXXb0hvq7CuEOv7InrroHMDoEYG80OQcWChug==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.24.7", - "packageName": "@babel/code-frame", - "hash": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==" - } - }, - "npm:@babel/code-frame@7.25.7": { - "type": "npm", - "name": "npm:@babel/code-frame@7.25.7", - "data": { - "version": "7.25.7", - "packageName": "@babel/code-frame", - "hash": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.25.7", - "packageName": "@babel/compat-data", - "hash": "sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.25.7", - "packageName": "@babel/core", - "hash": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.25.7", - "packageName": "@babel/generator", - "hash": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==" - } - }, - "npm:@babel/helper-validator-identifier@7.24.7": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier@7.24.7", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.25.7", - "packageName": "@babel/helpers", - "hash": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.24.7", - "packageName": "@babel/highlight", - "hash": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==" - } - }, - "npm:@babel/highlight@7.25.7": { - "type": "npm", - "name": "npm:@babel/highlight@7.25.7", - "data": { - "version": "7.25.7", - "packageName": "@babel/highlight", - "hash": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.25.7", - "packageName": "@babel/parser", - "hash": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==" - } - }, - "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-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.25.7", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==" - } - }, - "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.25.7", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==" - } - }, - "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.25.7", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.25.7", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.8", - "packageName": "@babel/runtime", - "hash": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.25.7", - "packageName": "@babel/template", - "hash": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.25.7", - "packageName": "@babel/traverse", - "hash": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.25.7", - "packageName": "@babel/types", - "hash": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@changesets/apply-release-plan": { - "type": "npm", - "name": "npm:@changesets/apply-release-plan", - "data": { - "version": "6.1.4", - "packageName": "@changesets/apply-release-plan", - "hash": "sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==" - } - }, - "npm:@changesets/assemble-release-plan": { - "type": "npm", - "name": "npm:@changesets/assemble-release-plan", - "data": { - "version": "5.2.4", - "packageName": "@changesets/assemble-release-plan", - "hash": "sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==" - } - }, - "npm:@changesets/changelog-git": { - "type": "npm", - "name": "npm:@changesets/changelog-git", - "data": { - "version": "0.1.14", - "packageName": "@changesets/changelog-git", - "hash": "sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==" - } - }, - "npm:@changesets/cli": { - "type": "npm", - "name": "npm:@changesets/cli", - "data": { - "version": "2.26.0", - "packageName": "@changesets/cli", - "hash": "sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==" - } - }, - "npm:@changesets/config": { - "type": "npm", - "name": "npm:@changesets/config", - "data": { - "version": "2.3.1", - "packageName": "@changesets/config", - "hash": "sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==" - } - }, - "npm:@changesets/errors": { - "type": "npm", - "name": "npm:@changesets/errors", - "data": { - "version": "0.1.4", - "packageName": "@changesets/errors", - "hash": "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==" - } - }, - "npm:@changesets/get-dependents-graph": { - "type": "npm", - "name": "npm:@changesets/get-dependents-graph", - "data": { - "version": "1.3.6", - "packageName": "@changesets/get-dependents-graph", - "hash": "sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==" - } - }, - "npm:@changesets/get-release-plan": { - "type": "npm", - "name": "npm:@changesets/get-release-plan", - "data": { - "version": "3.0.17", - "packageName": "@changesets/get-release-plan", - "hash": "sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==" - } - }, - "npm:@changesets/get-version-range-type": { - "type": "npm", - "name": "npm:@changesets/get-version-range-type", - "data": { - "version": "0.3.2", - "packageName": "@changesets/get-version-range-type", - "hash": "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==" - } - }, - "npm:@changesets/git": { - "type": "npm", - "name": "npm:@changesets/git", - "data": { - "version": "2.0.0", - "packageName": "@changesets/git", - "hash": "sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==" - } - }, - "npm:@changesets/logger": { - "type": "npm", - "name": "npm:@changesets/logger", - "data": { - "version": "0.0.5", - "packageName": "@changesets/logger", - "hash": "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==" - } - }, - "npm:@changesets/parse": { - "type": "npm", - "name": "npm:@changesets/parse", - "data": { - "version": "0.3.16", - "packageName": "@changesets/parse", - "hash": "sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==" - } - }, - "npm:@changesets/pre": { - "type": "npm", - "name": "npm:@changesets/pre", - "data": { - "version": "1.0.14", - "packageName": "@changesets/pre", - "hash": "sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==" - } - }, - "npm:@changesets/read": { - "type": "npm", - "name": "npm:@changesets/read", - "data": { - "version": "0.5.9", - "packageName": "@changesets/read", - "hash": "sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==" - } - }, - "npm:@changesets/types@4.1.0": { - "type": "npm", - "name": "npm:@changesets/types@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "@changesets/types", - "hash": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==" - } - }, - "npm:@changesets/types": { - "type": "npm", - "name": "npm:@changesets/types", - "data": { - "version": "5.2.1", - "packageName": "@changesets/types", - "hash": "sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==" - } - }, - "npm:@changesets/write": { - "type": "npm", - "name": "npm:@changesets/write", - "data": { - "version": "0.2.3", - "packageName": "@changesets/write", - "hash": "sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==" - } - }, - "npm:@chevrotain/cst-dts-gen": { - "type": "npm", - "name": "npm:@chevrotain/cst-dts-gen", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/cst-dts-gen", - "hash": "sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==" - } - }, - "npm:@chevrotain/gast": { - "type": "npm", - "name": "npm:@chevrotain/gast", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/gast", - "hash": "sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==" - } - }, - "npm:@chevrotain/types": { - "type": "npm", - "name": "npm:@chevrotain/types", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/types", - "hash": "sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==" - } - }, - "npm:@chevrotain/utils": { - "type": "npm", - "name": "npm:@chevrotain/utils", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/utils", - "hash": "sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.6.0", - "packageName": "@colors/colors", - "hash": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" - } - }, - "npm:@commitlint/cli": { - "type": "npm", - "name": "npm:@commitlint/cli", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/cli", - "hash": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==" - } - }, - "npm:@commitlint/config-conventional": { - "type": "npm", - "name": "npm:@commitlint/config-conventional", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/config-conventional", - "hash": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==" - } - }, - "npm:@commitlint/config-validator": { - "type": "npm", - "name": "npm:@commitlint/config-validator", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/config-validator", - "hash": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==" - } - }, - "npm:@commitlint/ensure": { - "type": "npm", - "name": "npm:@commitlint/ensure", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/ensure", - "hash": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==" - } - }, - "npm:@commitlint/execute-rule": { - "type": "npm", - "name": "npm:@commitlint/execute-rule", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/execute-rule", - "hash": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==" - } - }, - "npm:@commitlint/execute-rule@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/execute-rule@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/execute-rule", - "hash": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==" - } - }, - "npm:@commitlint/format": { - "type": "npm", - "name": "npm:@commitlint/format", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/format", - "hash": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==" - } - }, - "npm:@commitlint/is-ignored": { - "type": "npm", - "name": "npm:@commitlint/is-ignored", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/is-ignored", - "hash": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==" - } - }, - "npm:@commitlint/lint": { - "type": "npm", - "name": "npm:@commitlint/lint", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/lint", - "hash": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==" - } - }, - "npm:@commitlint/load": { - "type": "npm", - "name": "npm:@commitlint/load", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/load", - "hash": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==" - } - }, - "npm:@commitlint/load@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/load@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/load", - "hash": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==" - } - }, - "npm:@commitlint/message": { - "type": "npm", - "name": "npm:@commitlint/message", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/message", - "hash": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==" - } - }, - "npm:@commitlint/parse": { - "type": "npm", - "name": "npm:@commitlint/parse", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/parse", - "hash": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==" - } - }, - "npm:@commitlint/read": { - "type": "npm", - "name": "npm:@commitlint/read", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/read", - "hash": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==" - } - }, - "npm:@commitlint/resolve-extends": { - "type": "npm", - "name": "npm:@commitlint/resolve-extends", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/resolve-extends", - "hash": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==" - } - }, - "npm:@commitlint/resolve-extends@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/resolve-extends@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/resolve-extends", - "hash": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==" - } - }, - "npm:@commitlint/rules": { - "type": "npm", - "name": "npm:@commitlint/rules", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/rules", - "hash": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==" - } - }, - "npm:@commitlint/to-lines": { - "type": "npm", - "name": "npm:@commitlint/to-lines", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/to-lines", - "hash": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==" - } - }, - "npm:@commitlint/top-level": { - "type": "npm", - "name": "npm:@commitlint/top-level", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/top-level", - "hash": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==" - } - }, - "npm:@commitlint/types": { - "type": "npm", - "name": "npm:@commitlint/types", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/types", - "hash": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==" - } - }, - "npm:@commitlint/types@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/types@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/types", - "hash": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==" - } - }, - "npm:@dabh/diagnostics": { - "type": "npm", - "name": "npm:@dabh/diagnostics", - "data": { - "version": "2.0.3", - "packageName": "@dabh/diagnostics", - "hash": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==" - } - }, - "npm:@emnapi/core": { - "type": "npm", - "name": "npm:@emnapi/core", - "data": { - "version": "1.3.0", - "packageName": "@emnapi/core", - "hash": "sha512-9hRqVlhwqBqCoToZ3hFcNVqL+uyHV06Y47ax4UB8L6XgVRqYz7MFnfessojo6+5TK89pKwJnpophwjTMOeKI9Q==" - } - }, - "npm:@emnapi/runtime": { - "type": "npm", - "name": "npm:@emnapi/runtime", - "data": { - "version": "1.3.0", - "packageName": "@emnapi/runtime", - "hash": "sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==" - } - }, - "npm:@emnapi/wasi-threads": { - "type": "npm", - "name": "npm:@emnapi/wasi-threads", - "data": { - "version": "1.0.1", - "packageName": "@emnapi/wasi-threads", - "hash": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==" - } - }, - "npm:@esbuild/android-arm64": { - "type": "npm", - "name": "npm:@esbuild/android-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==" - } - }, - "npm:@esbuild/android-arm": { - "type": "npm", - "name": "npm:@esbuild/android-arm", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/android-arm", - "hash": "sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==" - } - }, - "npm:@esbuild/android-x64": { - "type": "npm", - "name": "npm:@esbuild/android-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/android-x64", - "hash": "sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==" - } - }, - "npm:@esbuild/darwin-arm64": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==" - } - }, - "npm:@esbuild/darwin-x64": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==" - } - }, - "npm:@esbuild/freebsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==" - } - }, - "npm:@esbuild/freebsd-x64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==" - } - }, - "npm:@esbuild/linux-arm64": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==" - } - }, - "npm:@esbuild/linux-arm": { - "type": "npm", - "name": "npm:@esbuild/linux-arm", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==" - } - }, - "npm:@esbuild/linux-ia32": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==" - } - }, - "npm:@esbuild/linux-loong64": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==" - } - }, - "npm:@esbuild/linux-mips64el": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==" - } - }, - "npm:@esbuild/linux-ppc64": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==" - } - }, - "npm:@esbuild/linux-riscv64": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==" - } - }, - "npm:@esbuild/linux-s390x": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==" - } - }, - "npm:@esbuild/netbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==" - } - }, - "npm:@esbuild/openbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==" - } - }, - "npm:@esbuild/sunos-x64": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==" - } - }, - "npm:@esbuild/win32-arm64": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==" - } - }, - "npm:@esbuild/win32-ia32": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "0.3.0", - "packageName": "@eslint/eslintrc", - "hash": "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==" - } - }, - "npm:@formatjs/cli": { - "type": "npm", - "name": "npm:@formatjs/cli", - "data": { - "version": "2.15.0", - "packageName": "@formatjs/cli", - "hash": "sha512-Hv7Z3xeGcgTpn1jA1/x7tc9UYbF9Udn/77xRf7E22Vn1mGJM/DftVqnpgLeNpd0d3xSftYw+rhaShNO19BsT6A==" - } - }, - "npm:@formatjs/ecma402-abstract": { - "type": "npm", - "name": "npm:@formatjs/ecma402-abstract", - "data": { - "version": "1.5.0", - "packageName": "@formatjs/ecma402-abstract", - "hash": "sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==" - } - }, - "npm:@formatjs/ts-transformer": { - "type": "npm", - "name": "npm:@formatjs/ts-transformer", - "data": { - "version": "2.13.0", - "packageName": "@formatjs/ts-transformer", - "hash": "sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==" - } - }, - "npm:@gar/promisify": { - "type": "npm", - "name": "npm:@gar/promisify", - "data": { - "version": "1.1.3", - "packageName": "@gar/promisify", - "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - } - }, - "npm:@hutson/parse-repository-url": { - "type": "npm", - "name": "npm:@hutson/parse-repository-url", - "data": { - "version": "3.0.2", - "packageName": "@hutson/parse-repository-url", - "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "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-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "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@25.5.0": { - "type": "npm", - "name": "npm:@jest/types@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "@jest/types", - "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" - } - }, - "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.5", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.2", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.2.1", - "packageName": "@jridgewell/set-array", - "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.6", - "packageName": "@jridgewell/source-map", - "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.5.0", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.25", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" - } - }, - "npm:@jsdevtools/ono": { - "type": "npm", - "name": "npm:@jsdevtools/ono", - "data": { - "version": "7.1.3", - "packageName": "@jsdevtools/ono", - "hash": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" - } - }, - "npm:@kwsites/file-exists": { - "type": "npm", - "name": "npm:@kwsites/file-exists", - "data": { - "version": "1.1.1", - "packageName": "@kwsites/file-exists", - "hash": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==" - } - }, - "npm:@kwsites/promise-deferred": { - "type": "npm", - "name": "npm:@kwsites/promise-deferred", - "data": { - "version": "1.1.1", - "packageName": "@kwsites/promise-deferred", - "hash": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==" - } - }, - "npm:@lerna/child-process": { - "type": "npm", - "name": "npm:@lerna/child-process", - "data": { - "version": "7.4.2", - "packageName": "@lerna/child-process", - "hash": "sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==" - } - }, - "npm:@lerna/create": { - "type": "npm", - "name": "npm:@lerna/create", - "data": { - "version": "7.4.2", - "packageName": "@lerna/create", - "hash": "sha512-1wplFbQ52K8E/unnqB0Tq39Z4e+NEoNrpovEnl6GpsTUrC6WDp8+w0Le2uCBV0hXyemxChduCkLz4/y1H1wTeg==" - } - }, - "npm:@manypkg/find-root": { - "type": "npm", - "name": "npm:@manypkg/find-root", - "data": { - "version": "1.1.0", - "packageName": "@manypkg/find-root", - "hash": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==" - } - }, - "npm:@manypkg/get-packages": { - "type": "npm", - "name": "npm:@manypkg/get-packages", - "data": { - "version": "1.1.3", - "packageName": "@manypkg/get-packages", - "hash": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==" - } - }, - "npm:@microsoft/applicationinsights-web-snippet": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-web-snippet", - "data": { - "version": "1.2.1", - "packageName": "@microsoft/applicationinsights-web-snippet", - "hash": "sha512-+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==" - } - }, - "npm:@napi-rs/wasm-runtime": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime", - "data": { - "version": "0.2.4", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" - } - }, - "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@2.1.2": { - "type": "npm", - "name": "npm:@npmcli/fs@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "@npmcli/fs", - "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.1", - "packageName": "@npmcli/fs", - "hash": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==" - } - }, - "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/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.1.0", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==" - } - }, - "npm:@npmcli/move-file": { - "type": "npm", - "name": "npm:@npmcli/move-file", - "data": { - "version": "2.0.1", - "packageName": "@npmcli/move-file", - "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" - } - }, - "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/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/devkit", - "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" - } - }, - "npm:@nrwl/tao@16.10.0": { - "type": "npm", - "name": "npm:@nrwl/tao@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/tao", - "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "19.8.4", - "packageName": "@nrwl/tao", - "hash": "sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nx/devkit", - "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" - } - }, - "npm:@nx/nx-darwin-arm64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ==" - } - }, - "npm:@nx/nx-darwin-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew==" - } - }, - "npm:@nx/nx-freebsd-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw==" - } - }, - "npm:@nx/nx-linux-arm64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==" - } - }, - "npm:@nx/nx-linux-arm64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==" - } - }, - "npm:@nx/nx-linux-x64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==" - } - }, - "npm:@nx/nx-linux-x64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-JB4tAuZBCF0yqSnKF3pHXa0b7LA3ebi3Bw08QmMr//ON4aU+eXURGBuj9XvULD2prY+gpBrvf+MsG1XJAHL6Zg==" - } - }, - "npm:@nx/nx-win32-arm64-msvc@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ==" - } - }, - "npm:@nx/nx-win32-x64-msvc@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g==" - } - }, - "npm:@octokit/auth-token": { - "type": "npm", - "name": "npm:@octokit/auth-token", - "data": { - "version": "3.0.4", - "packageName": "@octokit/auth-token", - "hash": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==" - } - }, - "npm:@octokit/core": { - "type": "npm", - "name": "npm:@octokit/core", - "data": { - "version": "4.2.4", - "packageName": "@octokit/core", - "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" - } - }, - "npm:@octokit/endpoint": { - "type": "npm", - "name": "npm:@octokit/endpoint", - "data": { - "version": "7.0.6", - "packageName": "@octokit/endpoint", - "hash": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==" - } - }, - "npm:@octokit/graphql": { - "type": "npm", - "name": "npm:@octokit/graphql", - "data": { - "version": "5.0.6", - "packageName": "@octokit/graphql", - "hash": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==" - } - }, - "npm:@octokit/openapi-types": { - "type": "npm", - "name": "npm:@octokit/openapi-types", - "data": { - "version": "18.1.1", - "packageName": "@octokit/openapi-types", - "hash": "sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==" - } - }, - "npm:@octokit/plugin-enterprise-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-enterprise-rest", - "data": { - "version": "6.0.1", - "packageName": "@octokit/plugin-enterprise-rest", - "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" - } - }, - "npm:@octokit/plugin-paginate-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest", - "data": { - "version": "6.1.2", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" - } - }, - "npm:@octokit/plugin-request-log": { - "type": "npm", - "name": "npm:@octokit/plugin-request-log", - "data": { - "version": "1.0.4", - "packageName": "@octokit/plugin-request-log", - "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" - } - }, - "npm:@octokit/plugin-rest-endpoint-methods": { - "type": "npm", - "name": "npm:@octokit/plugin-rest-endpoint-methods", - "data": { - "version": "7.2.3", - "packageName": "@octokit/plugin-rest-endpoint-methods", - "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" - } - }, - "npm:@octokit/request-error": { - "type": "npm", - "name": "npm:@octokit/request-error", - "data": { - "version": "3.0.3", - "packageName": "@octokit/request-error", - "hash": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==" - } - }, - "npm:@octokit/request": { - "type": "npm", - "name": "npm:@octokit/request", - "data": { - "version": "6.2.8", - "packageName": "@octokit/request", - "hash": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==" - } - }, - "npm:@octokit/rest": { - "type": "npm", - "name": "npm:@octokit/rest", - "data": { - "version": "19.0.11", - "packageName": "@octokit/rest", - "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" - } - }, - "npm:@octokit/tsconfig": { - "type": "npm", - "name": "npm:@octokit/tsconfig", - "data": { - "version": "1.0.2", - "packageName": "@octokit/tsconfig", - "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" - } - }, - "npm:@octokit/types@10.0.0": { - "type": "npm", - "name": "npm:@octokit/types@10.0.0", - "data": { - "version": "10.0.0", - "packageName": "@octokit/types", - "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" - } - }, - "npm:@octokit/types": { - "type": "npm", - "name": "npm:@octokit/types", - "data": { - "version": "9.3.2", - "packageName": "@octokit/types", - "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" - } - }, - "npm:@opentelemetry/api-logs": { - "type": "npm", - "name": "npm:@opentelemetry/api-logs", - "data": { - "version": "0.52.1", - "packageName": "@opentelemetry/api-logs", - "hash": "sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==" - } - }, - "npm:@opentelemetry/api": { - "type": "npm", - "name": "npm:@opentelemetry/api", - "data": { - "version": "1.9.0", - "packageName": "@opentelemetry/api", - "hash": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==" - } - }, - "npm:@opentelemetry/core": { - "type": "npm", - "name": "npm:@opentelemetry/core", - "data": { - "version": "1.26.0", - "packageName": "@opentelemetry/core", - "hash": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==" - } - }, - "npm:@opentelemetry/instrumentation": { - "type": "npm", - "name": "npm:@opentelemetry/instrumentation", - "data": { - "version": "0.52.1", - "packageName": "@opentelemetry/instrumentation", - "hash": "sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==" - } - }, - "npm:@opentelemetry/resources": { - "type": "npm", - "name": "npm:@opentelemetry/resources", - "data": { - "version": "1.26.0", - "packageName": "@opentelemetry/resources", - "hash": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==" - } - }, - "npm:@opentelemetry/sdk-trace-base": { - "type": "npm", - "name": "npm:@opentelemetry/sdk-trace-base", - "data": { - "version": "1.26.0", - "packageName": "@opentelemetry/sdk-trace-base", - "hash": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==" - } - }, - "npm:@opentelemetry/semantic-conventions": { - "type": "npm", - "name": "npm:@opentelemetry/semantic-conventions", - "data": { - "version": "1.27.0", - "packageName": "@opentelemetry/semantic-conventions", - "hash": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==" - } - }, - "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:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@prettier/plugin-xml": { - "type": "npm", - "name": "npm:@prettier/plugin-xml", - "data": { - "version": "2.2.0", - "packageName": "@prettier/plugin-xml", - "hash": "sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==" - } - }, - "npm:@rtsao/scc": { - "type": "npm", - "name": "npm:@rtsao/scc", - "data": { - "version": "1.1.0", - "packageName": "@rtsao/scc", - "hash": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" - } - }, - "npm:@sap-ux/annotation-converter": { - "type": "npm", - "name": "npm:@sap-ux/annotation-converter", - "data": { - "version": "0.5.20", - "packageName": "@sap-ux/annotation-converter", - "hash": "sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==" - } - }, - "npm:@sap-ux/edmx-parser": { - "type": "npm", - "name": "npm:@sap-ux/edmx-parser", - "data": { - "version": "0.5.13", - "packageName": "@sap-ux/edmx-parser", - "hash": "sha512-V58Iul9fSSMjWs1x7CimGyfnojnYTKcutGstRN4gmz6t4ijXsXQrTMzVetDbZ3EA2UznZtzreVF/8/gXC5MK3A==" - } - }, - "npm:@sap-ux/i18n": { - "type": "npm", - "name": "npm:@sap-ux/i18n", - "data": { - "version": "0.1.0", - "packageName": "@sap-ux/i18n", - "hash": "sha512-v16e/m+DShlqQELz6/VQZ454FeHYr/JbQA20xGT62yKjuvhG1tSKHwBrss8NYT0A9Lr8XxrKZpUZghD0iqY1/A==" - } - }, - "npm:@sap-ux/project-access": { - "type": "npm", - "name": "npm:@sap-ux/project-access", - "data": { - "version": "1.25.5", - "packageName": "@sap-ux/project-access", - "hash": "sha512-ZBUneSOIoX8jRUUf+ffmD37wuIBikKOjmjfmMZ0dn6dp+HoQSSXhnObsP5//51d3stPZ27y40HOHkdOon3CmrQ==" - } - }, - "npm:@sap-ux/ui5-config": { - "type": "npm", - "name": "npm:@sap-ux/ui5-config", - "data": { - "version": "0.23.1", - "packageName": "@sap-ux/ui5-config", - "hash": "sha512-2pfA5GX+Oho1SpRKgWdIiY6tW8L812Jjr/zNiDm27hmua0GKifIUxt5CanN11MB+YAwkg0rJwHH/2aWLeoFiuA==" - } - }, - "npm:@sap-ux/vocabularies-types": { - "type": "npm", - "name": "npm:@sap-ux/vocabularies-types", - "data": { - "version": "0.10.14", - "packageName": "@sap-ux/vocabularies-types", - "hash": "sha512-PtjyRBQbjCFHE1TAXz3DXuyD46eoobAK3BmOsjS60o2dNHMU9EVL1/sbbeiB2917ZV0ARezd3C1BNEict5VXfg==" - } - }, - "npm:@sap-ux/yaml": { - "type": "npm", - "name": "npm:@sap-ux/yaml", - "data": { - "version": "0.16.0", - "packageName": "@sap-ux/yaml", - "hash": "sha512-jojo+NDZyuguUmTznj+yof2luSRarfqR2x09jRoVhS0CT2oJaAxyd60yXRtuCUFW7FbuEii+jSf+aeBU7QSPVw==" - } - }, - "npm:@sap/bas-sdk": { - "type": "npm", - "name": "npm:@sap/bas-sdk", - "data": { - "version": "3.8.9", - "packageName": "@sap/bas-sdk", - "hash": "sha512-ycYttnSTlEPjDrb0svSv0jBgqEvoekD4bNB4IxuKCu5OKk5FycwsOTgufU8CXYf1ag23wTlurN+N7c4Po6PcJQ==" - } - }, - "npm:@sap/swa-for-sapbas-vsx@1.1.9": { - "type": "npm", - "name": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "data": { - "version": "1.1.9", - "packageName": "@sap/swa-for-sapbas-vsx", - "hash": "sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==" - } - }, - "npm:@sap/swa-for-sapbas-vsx": { - "type": "npm", - "name": "npm:@sap/swa-for-sapbas-vsx", - "data": { - "version": "2.0.7", - "packageName": "@sap/swa-for-sapbas-vsx", - "hash": "sha512-EPV6cj5AdCSUp9FLHqKw+nochB5tOjzV840+0pQ1ebEPdzqaQ+e3RjFjqfIrBEZn5yD3EiLPR/3qYTDBh1MarQ==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "1.1.0", - "packageName": "@sigstore/bundle", - "hash": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==" - } - }, - "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": "1.0.0", - "packageName": "@sigstore/sign", - "hash": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "1.0.3", - "packageName": "@sigstore/tuf", - "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" - } - }, - "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:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.1", - "packageName": "@sinonjs/commons", - "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" - } - }, - "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:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "1.1.2", - "packageName": "@tootallnate/once", - "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" - } - }, - "npm:@tootallnate/once@2.0.0": { - "type": "npm", - "name": "npm:@tootallnate/once@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "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/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "1.0.4", - "packageName": "@tufjs/models", - "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" - } - }, - "npm:@tybys/wasm-util": { - "type": "npm", - "name": "npm:@tybys/wasm-util", - "data": { - "version": "0.9.0", - "packageName": "@tybys/wasm-util", - "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" - } - }, - "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.6", - "packageName": "@types/babel__traverse", - "hash": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==" - } - }, - "npm:@types/chai": { - "type": "npm", - "name": "npm:@types/chai", - "data": { - "version": "5.0.0", - "packageName": "@types/chai", - "hash": "sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==" - } - }, - "npm:@types/conventional-commits-parser": { - "type": "npm", - "name": "npm:@types/conventional-commits-parser", - "data": { - "version": "5.0.0", - "packageName": "@types/conventional-commits-parser", - "hash": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==" - } - }, - "npm:@types/deep-freeze-strict": { - "type": "npm", - "name": "npm:@types/deep-freeze-strict", - "data": { - "version": "1.1.0", - "packageName": "@types/deep-freeze-strict", - "hash": "sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.6", - "packageName": "@types/estree", - "hash": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" - } - }, - "npm:@types/fs-extra": { - "type": "npm", - "name": "npm:@types/fs-extra", - "data": { - "version": "9.0.11", - "packageName": "@types/fs-extra", - "hash": "sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==" - } - }, - "npm:@types/glob": { - "type": "npm", - "name": "npm:@types/glob", - "data": { - "version": "8.1.0", - "packageName": "@types/glob", - "hash": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==" - } - }, - "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/is-ci": { - "type": "npm", - "name": "npm:@types/is-ci", - "data": { - "version": "3.0.4", - "packageName": "@types/is-ci", - "hash": "sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==" - } - }, - "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@1.1.2": { - "type": "npm", - "name": "npm:@types/istanbul-reports@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "@types/istanbul-reports", - "hash": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==" - } - }, - "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-specific-snapshot": { - "type": "npm", - "name": "npm:@types/jest-specific-snapshot", - "data": { - "version": "0.5.5", - "packageName": "@types/jest-specific-snapshot", - "hash": "sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.2.6", - "packageName": "@types/jest", - "hash": "sha512-XEUC/Tgw3uMh6Ho8GkUtQ2lPhY5Fmgyp3TdlkTJs1W9VgNxs+Ow/x3Elh8lHQKqCbZL0AubQuqWjHVT033Hhrw==" - } - }, - "npm:@types/js-yaml": { - "type": "npm", - "name": "npm:@types/js-yaml", - "data": { - "version": "4.0.5", - "packageName": "@types/js-yaml", - "hash": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==" - } - }, - "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/json-stable-stringify": { - "type": "npm", - "name": "npm:@types/json-stable-stringify", - "data": { - "version": "1.0.36", - "packageName": "@types/json-stable-stringify", - "hash": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - } - }, - "npm:@types/klaw-sync": { - "type": "npm", - "name": "npm:@types/klaw-sync", - "data": { - "version": "6.0.0", - "packageName": "@types/klaw-sync", - "hash": "sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.14.168", - "packageName": "@types/lodash", - "hash": "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==" - } - }, - "npm:@types/loud-rejection": { - "type": "npm", - "name": "npm:@types/loud-rejection", - "data": { - "version": "2.0.0", - "packageName": "@types/loud-rejection", - "hash": "sha512-oTHISsIybJGoh3b3Ay/10csbAd2k0su7G7DGrE1QWciC+IdydPm0WMw1+Gr9YMYjPiJ5poB3g5Ev73IlLoavLw==" - } - }, - "npm:@types/minimatch@3.0.5": { - "type": "npm", - "name": "npm:@types/minimatch@3.0.5", - "data": { - "version": "3.0.5", - "packageName": "@types/minimatch", - "hash": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - } - }, - "npm:@types/minimatch": { - "type": "npm", - "name": "npm:@types/minimatch", - "data": { - "version": "5.1.2", - "packageName": "@types/minimatch", - "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - } - }, - "npm:@types/minimist": { - "type": "npm", - "name": "npm:@types/minimist", - "data": { - "version": "1.2.5", - "packageName": "@types/minimist", - "hash": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==" - } - }, - "npm:@types/node-fetch": { - "type": "npm", - "name": "npm:@types/node-fetch", - "data": { - "version": "2.5.10", - "packageName": "@types/node-fetch", - "hash": "sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==" - } - }, - "npm:@types/node@12.20.55": { - "type": "npm", - "name": "npm:@types/node@12.20.55", - "data": { - "version": "12.20.55", - "packageName": "@types/node", - "hash": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - } - }, - "npm:@types/node@14.18.63": { - "type": "npm", - "name": "npm:@types/node@14.18.63", - "data": { - "version": "14.18.63", - "packageName": "@types/node", - "hash": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.11.9", - "packageName": "@types/node", - "hash": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" - } - }, - "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/prettier@1.19.1": { - "type": "npm", - "name": "npm:@types/prettier@1.19.1", - "data": { - "version": "1.19.1", - "packageName": "@types/prettier", - "hash": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==" - } - }, - "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/rimraf": { - "type": "npm", - "name": "npm:@types/rimraf", - "data": { - "version": "3.0.0", - "packageName": "@types/rimraf", - "hash": "sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==" - } - }, - "npm:@types/semver@6.2.7": { - "type": "npm", - "name": "npm:@types/semver@6.2.7", - "data": { - "version": "6.2.7", - "packageName": "@types/semver", - "hash": "sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "7.3.12", - "packageName": "@types/semver", - "hash": "sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==" - } - }, - "npm:@types/shimmer": { - "type": "npm", - "name": "npm:@types/shimmer", - "data": { - "version": "1.2.0", - "packageName": "@types/shimmer", - "hash": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==" - } - }, - "npm:@types/sinon-chai": { - "type": "npm", - "name": "npm:@types/sinon-chai", - "data": { - "version": "3.2.5", - "packageName": "@types/sinon-chai", - "hash": "sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==" - } - }, - "npm:@types/sinon": { - "type": "npm", - "name": "npm:@types/sinon", - "data": { - "version": "9.0.10", - "packageName": "@types/sinon", - "hash": "sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.5", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "1.0.1", - "packageName": "@types/stack-utils", - "hash": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" - } - }, - "npm:@types/stack-utils@2.0.3": { - "type": "npm", - "name": "npm:@types/stack-utils@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/tmp": { - "type": "npm", - "name": "npm:@types/tmp", - "data": { - "version": "0.2.0", - "packageName": "@types/tmp", - "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" - } - }, - "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/triple-beam": { - "type": "npm", - "name": "npm:@types/triple-beam", - "data": { - "version": "1.3.5", - "packageName": "@types/triple-beam", - "hash": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" - } - }, - "npm:@types/vscode": { - "type": "npm", - "name": "npm:@types/vscode", - "data": { - "version": "1.47.0", - "packageName": "@types/vscode", - "hash": "sha512-nJA37ykkz9FYA0ZOQUSc3OZnhuzEW2vUhUEo4MiduUo82jGwwcLfyvmgd/Q7b0WrZAAceojGhZybg319L24bTA==" - } - }, - "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/yargs@15.0.19": { - "type": "npm", - "name": "npm:@types/yargs@15.0.19", - "data": { - "version": "15.0.19", - "packageName": "@types/yargs", - "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.33", - "packageName": "@types/yargs", - "hash": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==" - } - }, - "npm:@typescript-eslint/experimental-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/experimental-utils", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/experimental-utils", - "hash": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==" - } - }, - "npm:@typescript-eslint/scope-manager@4.14.0": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@4.14.0", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A==" - } - }, - "npm:@typescript-eslint/types@4.33.0": { - "type": "npm", - "name": "npm:@typescript-eslint/types@4.33.0", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==" - } - }, - "npm:@typescript-eslint/typescript-estree@4.33.0": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@4.33.0", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA==" - } - }, - "npm:@typescript-eslint/visitor-keys@4.33.0": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@4.33.0", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==" - } - }, - "npm:@vscode-logging/logger": { - "type": "npm", - "name": "npm:@vscode-logging/logger", - "data": { - "version": "1.2.2", - "packageName": "@vscode-logging/logger", - "hash": "sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA==" - } - }, - "npm:@vscode-logging/types": { - "type": "npm", - "name": "npm:@vscode-logging/types", - "data": { - "version": "0.1.4", - "packageName": "@vscode-logging/types", - "hash": "sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==" - } - }, - "npm:@vue/compiler-core": { - "type": "npm", - "name": "npm:@vue/compiler-core", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-core", - "hash": "sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==" - } - }, - "npm:@vue/compiler-dom": { - "type": "npm", - "name": "npm:@vue/compiler-dom", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-dom", - "hash": "sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==" - } - }, - "npm:@vue/compiler-sfc": { - "type": "npm", - "name": "npm:@vue/compiler-sfc", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-sfc", - "hash": "sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==" - } - }, - "npm:@vue/compiler-ssr": { - "type": "npm", - "name": "npm:@vue/compiler-ssr", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-ssr", - "hash": "sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==" - } - }, - "npm:@vue/shared": { - "type": "npm", - "name": "npm:@vue/shared", - "data": { - "version": "3.5.11", - "packageName": "@vue/shared", - "hash": "sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==" - } - }, - "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.12.1", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" - } - }, - "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.12.1", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==" - } - }, - "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.12.1", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==" - } - }, - "npm:@xml-tools/ast-position": { - "type": "npm", - "name": "npm:@xml-tools/ast-position", - "data": { - "version": "2.0.2", - "packageName": "@xml-tools/ast-position", - "hash": "sha512-SuZrlXPJICF/mtcjPe8Yq5gTX6XaLyWACQyeVG6X+dMuHWiZ5ckLvlMXs5SZg9Xxw21d3Q/P1MFyM33HQPzkNg==" - } - }, - "npm:@xml-tools/ast": { - "type": "npm", - "name": "npm:@xml-tools/ast", - "data": { - "version": "5.0.0", - "packageName": "@xml-tools/ast", - "hash": "sha512-NLMBbvW1S6bG+pHvPfQeM3ci+le9LexuA4E+obqoRpTWqlJSQGiPKxq8p+HauQmdlF4UC9GUIGsa+9FNFefKyg==" - } - }, - "npm:@xml-tools/common": { - "type": "npm", - "name": "npm:@xml-tools/common", - "data": { - "version": "0.1.2", - "packageName": "@xml-tools/common", - "hash": "sha512-5U0CbB3u5WDRKX+oPjHEm6ZkJk8z5LZMpEI6uzBzcnP+3dIxahCF90lhwljQ/rPVSLMLxLfv72xru6RbePeLWA==" - } - }, - "npm:@xml-tools/content-assist": { - "type": "npm", - "name": "npm:@xml-tools/content-assist", - "data": { - "version": "3.1.7", - "packageName": "@xml-tools/content-assist", - "hash": "sha512-qkOSsQt3arJANrJnypXmLzXaCeFX0qNCZDvrNue0LDhWP+MbGMJO50Vh5FLYCQUCzDFHIzi8T53abCkbO1e3ug==" - } - }, - "npm:@xml-tools/parser@1.0.11": { - "type": "npm", - "name": "npm:@xml-tools/parser@1.0.11", - "data": { - "version": "1.0.11", - "packageName": "@xml-tools/parser", - "hash": "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==" - } - }, - "npm:@xml-tools/parser": { - "type": "npm", - "name": "npm:@xml-tools/parser", - "data": { - "version": "1.0.7", - "packageName": "@xml-tools/parser", - "hash": "sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ==" - } - }, - "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@0.0.6": { - "type": "npm", - "name": "npm:@zkochan/js-yaml@0.0.6", - "data": { - "version": "0.0.6", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.7", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "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:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-attributes": { - "type": "npm", - "name": "npm:acorn-import-attributes", - "data": { - "version": "1.9.5", - "packageName": "acorn-import-attributes", - "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" - } - }, - "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.4", - "packageName": "acorn-walk", - "hash": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "7.4.1", - "packageName": "acorn", - "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - }, - "npm:acorn@8.12.1": { - "type": "npm", - "name": "npm:acorn@8.12.1", - "data": { - "version": "8.12.1", - "packageName": "acorn", - "hash": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==" - } - }, - "npm:add-stream": { - "type": "npm", - "name": "npm:add-stream", - "data": { - "version": "1.0.0", - "packageName": "add-stream", - "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:agentkeepalive": { - "type": "npm", - "name": "npm:agentkeepalive", - "data": { - "version": "4.5.0", - "packageName": "agentkeepalive", - "hash": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "6.12.3", - "packageName": "ajv", - "hash": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==" - } - }, - "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@8.17.1": { - "type": "npm", - "name": "npm:ajv@8.17.1", - "data": { - "version": "8.17.1", - "packageName": "ajv", - "hash": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==" - } - }, - "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-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex@6.1.0": { - "type": "npm", - "name": "npm:ansi-regex@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "ansi-regex", - "hash": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" - } - }, - "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: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:any-promise": { - "type": "npm", - "name": "npm:any-promise", - "data": { - "version": "1.3.0", - "packageName": "any-promise", - "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:append-transform": { - "type": "npm", - "name": "npm:append-transform", - "data": { - "version": "2.0.0", - "packageName": "append-transform", - "hash": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==" - } - }, - "npm:applicationinsights": { - "type": "npm", - "name": "npm:applicationinsights", - "data": { - "version": "2.9.2", - "packageName": "applicationinsights", - "hash": "sha512-wlDiD7v0BQNM8oNzsf9C836R5ze25u+CuCEZsbA5xMIXYYBxkqkWE/mo9GFJM7rsKaiGqpxEwWmePHKD2Lwy2w==" - } - }, - "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:archy": { - "type": "npm", - "name": "npm:archy", - "data": { - "version": "1.0.0", - "packageName": "archy", - "hash": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==" - } - }, - "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:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.1", - "packageName": "array-buffer-byte-length", - "hash": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==" - } - }, - "npm:array-differ": { - "type": "npm", - "name": "npm:array-differ", - "data": { - "version": "3.0.0", - "packageName": "array-differ", - "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" - } - }, - "npm:array-find-index": { - "type": "npm", - "name": "npm:array-find-index", - "data": { - "version": "1.0.2", - "packageName": "array-find-index", - "hash": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==" - } - }, - "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.8", - "packageName": "array-includes", - "hash": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==" - } - }, - "npm:array-timsort": { - "type": "npm", - "name": "npm:array-timsort", - "data": { - "version": "1.0.3", - "packageName": "array-timsort", - "hash": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" - } - }, - "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:array.prototype.findlastindex": { - "type": "npm", - "name": "npm:array.prototype.findlastindex", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.findlastindex", - "hash": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flat", - "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flatmap", - "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.3", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==" - } - }, - "npm:arrify@1.0.1": { - "type": "npm", - "name": "npm:arrify@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "arrify", - "hash": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" - } - }, - "npm:arrify": { - "type": "npm", - "name": "npm:arrify", - "data": { - "version": "2.0.1", - "packageName": "arrify", - "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" - } - }, - "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-never": { - "type": "npm", - "name": "npm:assert-never", - "data": { - "version": "1.2.1", - "packageName": "assert-never", - "hash": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - } - }, - "npm:assertion-error": { - "type": "npm", - "name": "npm:assertion-error", - "data": { - "version": "1.1.0", - "packageName": "assertion-error", - "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-hook-jl": { - "type": "npm", - "name": "npm:async-hook-jl", - "data": { - "version": "1.7.6", - "packageName": "async-hook-jl", - "hash": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==" - } - }, - "npm:async-listener": { - "type": "npm", - "name": "npm:async-listener", - "data": { - "version": "0.6.10", - "packageName": "async-listener", - "hash": "sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.5", - "packageName": "async", - "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - } - }, - "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:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.7", - "packageName": "available-typed-arrays", - "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" - } - }, - "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.13.2", - "packageName": "aws4", - "hash": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.6.1", - "packageName": "axios", - "hash": "sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==" - } - }, - "npm:axios@1.7.4": { - "type": "npm", - "name": "npm:axios@1.7.4", - "data": { - "version": "1.7.4", - "packageName": "axios", - "hash": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==" - } - }, - "npm:axios@1.7.7": { - "type": "npm", - "name": "npm:axios@1.7.7", - "data": { - "version": "1.7.7", - "packageName": "axios", - "hash": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==" - } - }, - "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-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.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.1.0", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==" - } - }, - "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:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" - } - }, - "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:better-path-resolve": { - "type": "npm", - "name": "npm:better-path-resolve", - "data": { - "version": "1.0.0", - "packageName": "better-path-resolve", - "hash": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==" - } - }, - "npm:big-integer": { - "type": "npm", - "name": "npm:big-integer", - "data": { - "version": "1.6.52", - "packageName": "big-integer", - "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:binary": { - "type": "npm", - "name": "npm:binary", - "data": { - "version": "0.3.0", - "packageName": "binary", - "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" - } - }, - "npm:binaryextensions": { - "type": "npm", - "name": "npm:binaryextensions", - "data": { - "version": "4.19.0", - "packageName": "binaryextensions", - "hash": "sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.4.7", - "packageName": "bluebird", - "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "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:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:breakword": { - "type": "npm", - "name": "npm:breakword", - "data": { - "version": "1.0.6", - "packageName": "breakword", - "hash": "sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==" - } - }, - "npm:browser-resolve": { - "type": "npm", - "name": "npm:browser-resolve", - "data": { - "version": "1.11.3", - "packageName": "browser-resolve", - "hash": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.24.0", - "packageName": "browserslist", - "hash": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==" - } - }, - "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:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:buffer-indexof-polyfill": { - "type": "npm", - "name": "npm:buffer-indexof-polyfill", - "data": { - "version": "1.0.2", - "packageName": "buffer-indexof-polyfill", - "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffers": { - "type": "npm", - "name": "npm:buffers", - "data": { - "version": "0.1.1", - "packageName": "buffers", - "hash": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==" - } - }, - "npm:builtins@1.0.3": { - "type": "npm", - "name": "npm:builtins@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "builtins", - "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.1.0", - "packageName": "builtins", - "hash": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==" - } - }, - "npm:byte-size": { - "type": "npm", - "name": "npm:byte-size", - "data": { - "version": "8.1.1", - "packageName": "byte-size", - "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" - } - }, - "npm:cacache@16.1.3": { - "type": "npm", - "name": "npm:cacache@16.1.3", - "data": { - "version": "16.1.3", - "packageName": "cacache", - "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "17.1.4", - "packageName": "cacache", - "hash": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.3.0", - "packageName": "cachedir", - "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" - } - }, - "npm:caching-transform": { - "type": "npm", - "name": "npm:caching-transform", - "data": { - "version": "4.0.0", - "packageName": "caching-transform", - "hash": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.7", - "packageName": "call-bind", - "hash": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==" - } - }, - "npm:call-me-maybe": { - "type": "npm", - "name": "npm:call-me-maybe", - "data": { - "version": "1.0.2", - "packageName": "call-me-maybe", - "hash": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase-keys": { - "type": "npm", - "name": "npm:camelcase-keys", - "data": { - "version": "6.2.2", - "packageName": "camelcase-keys", - "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" - } - }, - "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-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001667", - "packageName": "caniuse-lite", - "hash": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - } - }, - "npm:chai": { - "type": "npm", - "name": "npm:chai", - "data": { - "version": "4.2.0", - "packageName": "chai", - "hash": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==" - } - }, - "npm:chainsaw": { - "type": "npm", - "name": "npm:chainsaw", - "data": { - "version": "0.1.0", - "packageName": "chainsaw", - "hash": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk@4.1.0": { - "type": "npm", - "name": "npm:chalk@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "chalk", - "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" - } - }, - "npm:chalk@4.1.2": { - "type": "npm", - "name": "npm:chalk@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "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: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-error": { - "type": "npm", - "name": "npm:check-error", - "data": { - "version": "1.0.3", - "packageName": "check-error", - "hash": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==" - } - }, - "npm:chevrotain@10.4.2": { - "type": "npm", - "name": "npm:chevrotain@10.4.2", - "data": { - "version": "10.4.2", - "packageName": "chevrotain", - "hash": "sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg==" - } - }, - "npm:chevrotain": { - "type": "npm", - "name": "npm:chevrotain", - "data": { - "version": "7.0.1", - "packageName": "chevrotain", - "hash": "sha512-B/44jrdw5GAzy483LEeVSgXSX0qOYM8lUd3l5+yf6Vl6OQjEUCm2BUiYbHRCIK6xCEvCLAFe1kj8uyV6+zdaVw==" - } - }, - "npm:chevrotain@7.1.1": { - "type": "npm", - "name": "npm:chevrotain@7.1.1", - "data": { - "version": "7.1.1", - "packageName": "chevrotain", - "hash": "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==" - } - }, - "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.4", - "packageName": "chrome-trace-event", - "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "cjs-module-lexer", - "hash": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:cli-color": { - "type": "npm", - "name": "npm:cli-color", - "data": { - "version": "2.0.3", - "packageName": "cli-color", - "hash": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==" - } - }, - "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-spinners@2.9.2": { - "type": "npm", - "name": "npm:cli-spinners@2.9.2", - "data": { - "version": "2.9.2", - "packageName": "cli-spinners", - "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - } - }, - "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-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - } - }, - "npm:cliui@6.0.0": { - "type": "npm", - "name": "npm:cliui@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cliui", - "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" - } - }, - "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: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:clone-buffer": { - "type": "npm", - "name": "npm:clone-buffer", - "data": { - "version": "1.0.0", - "packageName": "clone-buffer", - "hash": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone-stats": { - "type": "npm", - "name": "npm:clone-stats", - "data": { - "version": "1.0.0", - "packageName": "clone-stats", - "hash": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" - } - }, - "npm:clone@1.0.4": { - "type": "npm", - "name": "npm:clone@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "2.1.2", - "packageName": "clone", - "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" - } - }, - "npm:cloneable-readable": { - "type": "npm", - "name": "npm:cloneable-readable", - "data": { - "version": "1.1.3", - "packageName": "cloneable-readable", - "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" - } - }, - "npm:cls-hooked": { - "type": "npm", - "name": "npm:cls-hooked", - "data": { - "version": "4.2.2", - "packageName": "cls-hooked", - "hash": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==" - } - }, - "npm:cmd-shim": { - "type": "npm", - "name": "npm:cmd-shim", - "data": { - "version": "6.0.1", - "packageName": "cmd-shim", - "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "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: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-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-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "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-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.9.1", - "packageName": "color-string", - "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" - } - }, - "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:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "3.2.1", - "packageName": "color", - "hash": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:colorspace": { - "type": "npm", - "name": "npm:colorspace", - "data": { - "version": "1.1.4", - "packageName": "colorspace", - "hash": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==" - } - }, - "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@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:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:comment-json": { - "type": "npm", - "name": "npm:comment-json", - "data": { - "version": "4.2.5", - "packageName": "comment-json", - "hash": "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==" - } - }, - "npm:commitizen": { - "type": "npm", - "name": "npm:commitizen", - "data": { - "version": "4.3.1", - "packageName": "commitizen", - "hash": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==" - } - }, - "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: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": "2.0.0", - "packageName": "concat-stream", - "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" - } - }, - "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:continuation-local-storage": { - "type": "npm", - "name": "npm:continuation-local-storage", - "data": { - "version": "3.2.1", - "packageName": "continuation-local-storage", - "hash": "sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==" - } - }, - "npm:conventional-changelog-angular@5.0.13": { - "type": "npm", - "name": "npm:conventional-changelog-angular@5.0.13", - "data": { - "version": "5.0.13", - "packageName": "conventional-changelog-angular", - "hash": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==" - } - }, - "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-atom": { - "type": "npm", - "name": "npm:conventional-changelog-atom", - "data": { - "version": "2.0.8", - "packageName": "conventional-changelog-atom", - "hash": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==" - } - }, - "npm:conventional-changelog-cli": { - "type": "npm", - "name": "npm:conventional-changelog-cli", - "data": { - "version": "2.1.1", - "packageName": "conventional-changelog-cli", - "hash": "sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==" - } - }, - "npm:conventional-changelog-codemirror": { - "type": "npm", - "name": "npm:conventional-changelog-codemirror", - "data": { - "version": "2.0.8", - "packageName": "conventional-changelog-codemirror", - "hash": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==" - } - }, - "npm:conventional-changelog-conventionalcommits": { - "type": "npm", - "name": "npm:conventional-changelog-conventionalcommits", - "data": { - "version": "4.6.3", - "packageName": "conventional-changelog-conventionalcommits", - "hash": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==" - } - }, - "npm:conventional-changelog-core@4.2.4": { - "type": "npm", - "name": "npm:conventional-changelog-core@4.2.4", - "data": { - "version": "4.2.4", - "packageName": "conventional-changelog-core", - "hash": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==" - } - }, - "npm:conventional-changelog-core": { - "type": "npm", - "name": "npm:conventional-changelog-core", - "data": { - "version": "5.0.1", - "packageName": "conventional-changelog-core", - "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" - } - }, - "npm:conventional-changelog-ember": { - "type": "npm", - "name": "npm:conventional-changelog-ember", - "data": { - "version": "2.0.9", - "packageName": "conventional-changelog-ember", - "hash": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==" - } - }, - "npm:conventional-changelog-eslint": { - "type": "npm", - "name": "npm:conventional-changelog-eslint", - "data": { - "version": "3.0.9", - "packageName": "conventional-changelog-eslint", - "hash": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==" - } - }, - "npm:conventional-changelog-express": { - "type": "npm", - "name": "npm:conventional-changelog-express", - "data": { - "version": "2.0.6", - "packageName": "conventional-changelog-express", - "hash": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==" - } - }, - "npm:conventional-changelog-jquery": { - "type": "npm", - "name": "npm:conventional-changelog-jquery", - "data": { - "version": "3.0.11", - "packageName": "conventional-changelog-jquery", - "hash": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==" - } - }, - "npm:conventional-changelog-jshint": { - "type": "npm", - "name": "npm:conventional-changelog-jshint", - "data": { - "version": "2.0.9", - "packageName": "conventional-changelog-jshint", - "hash": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==" - } - }, - "npm:conventional-changelog-preset-loader": { - "type": "npm", - "name": "npm:conventional-changelog-preset-loader", - "data": { - "version": "2.3.4", - "packageName": "conventional-changelog-preset-loader", - "hash": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==" - } - }, - "npm:conventional-changelog-preset-loader@3.0.0": { - "type": "npm", - "name": "npm:conventional-changelog-preset-loader@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "conventional-changelog-preset-loader", - "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" - } - }, - "npm:conventional-changelog-writer@5.0.1": { - "type": "npm", - "name": "npm:conventional-changelog-writer@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==" - } - }, - "npm:conventional-changelog-writer": { - "type": "npm", - "name": "npm:conventional-changelog-writer", - "data": { - "version": "6.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" - } - }, - "npm:conventional-changelog": { - "type": "npm", - "name": "npm:conventional-changelog", - "data": { - "version": "3.1.25", - "packageName": "conventional-changelog", - "hash": "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==" - } - }, - "npm:conventional-commit-types": { - "type": "npm", - "name": "npm:conventional-commit-types", - "data": { - "version": "3.0.0", - "packageName": "conventional-commit-types", - "hash": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==" - } - }, - "npm:conventional-commits-filter@2.0.7": { - "type": "npm", - "name": "npm:conventional-commits-filter@2.0.7", - "data": { - "version": "2.0.7", - "packageName": "conventional-commits-filter", - "hash": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==" - } - }, - "npm:conventional-commits-filter": { - "type": "npm", - "name": "npm:conventional-commits-filter", - "data": { - "version": "3.0.0", - "packageName": "conventional-commits-filter", - "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" - } - }, - "npm:conventional-commits-parser@3.2.4": { - "type": "npm", - "name": "npm:conventional-commits-parser@3.2.4", - "data": { - "version": "3.2.4", - "packageName": "conventional-commits-parser", - "hash": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==" - } - }, - "npm:conventional-commits-parser": { - "type": "npm", - "name": "npm:conventional-commits-parser", - "data": { - "version": "4.0.0", - "packageName": "conventional-commits-parser", - "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" - } - }, - "npm:conventional-recommended-bump": { - "type": "npm", - "name": "npm:conventional-recommended-bump", - "data": { - "version": "7.0.1", - "packageName": "conventional-recommended-bump", - "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" - } - }, - "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: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:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.38.1", - "packageName": "core-js", - "hash": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==" - } - }, - "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:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.3", - "packageName": "core-util-is", - "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - } - }, - "npm:cosmiconfig-typescript-loader": { - "type": "npm", - "name": "npm:cosmiconfig-typescript-loader", - "data": { - "version": "5.0.0", - "packageName": "cosmiconfig-typescript-loader", - "hash": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==" - } - }, - "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": "8.3.6", - "packageName": "cosmiconfig", - "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" - } - }, - "npm:cosmiconfig@9.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" - } - }, - "npm:coveralls": { - "type": "npm", - "name": "npm:coveralls", - "data": { - "version": "3.1.0", - "packageName": "coveralls", - "hash": "sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:cross-env": { - "type": "npm", - "name": "npm:cross-env", - "data": { - "version": "7.0.3", - "packageName": "cross-env", - "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" - } - }, - "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:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "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:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:csv-generate": { - "type": "npm", - "name": "npm:csv-generate", - "data": { - "version": "3.4.3", - "packageName": "csv-generate", - "hash": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==" - } - }, - "npm:csv-parse": { - "type": "npm", - "name": "npm:csv-parse", - "data": { - "version": "4.16.3", - "packageName": "csv-parse", - "hash": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==" - } - }, - "npm:csv-stringify": { - "type": "npm", - "name": "npm:csv-stringify", - "data": { - "version": "5.6.5", - "packageName": "csv-stringify", - "hash": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==" - } - }, - "npm:csv": { - "type": "npm", - "name": "npm:csv", - "data": { - "version": "5.5.3", - "packageName": "csv", - "hash": "sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==" - } - }, - "npm:currently-unhandled": { - "type": "npm", - "name": "npm:currently-unhandled", - "data": { - "version": "0.4.1", - "packageName": "currently-unhandled", - "hash": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==" - } - }, - "npm:cz-conventional-changelog": { - "type": "npm", - "name": "npm:cz-conventional-changelog", - "data": { - "version": "3.3.0", - "packageName": "cz-conventional-changelog", - "hash": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==" - } - }, - "npm:d": { - "type": "npm", - "name": "npm:d", - "data": { - "version": "1.0.1", - "packageName": "d", - "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" - } - }, - "npm:dargs": { - "type": "npm", - "name": "npm:dargs", - "data": { - "version": "7.0.0", - "packageName": "dargs", - "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" - } - }, - "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:data-view-buffer": { - "type": "npm", - "name": "npm:data-view-buffer", - "data": { - "version": "1.0.1", - "packageName": "data-view-buffer", - "hash": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==" - } - }, - "npm:data-view-byte-length": { - "type": "npm", - "name": "npm:data-view-byte-length", - "data": { - "version": "1.0.1", - "packageName": "data-view-byte-length", - "hash": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==" - } - }, - "npm:data-view-byte-offset": { - "type": "npm", - "name": "npm:data-view-byte-offset", - "data": { - "version": "1.0.0", - "packageName": "data-view-byte-offset", - "hash": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==" - } - }, - "npm:date-format": { - "type": "npm", - "name": "npm:date-format", - "data": { - "version": "2.1.0", - "packageName": "date-format", - "hash": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==" - } - }, - "npm:dateformat": { - "type": "npm", - "name": "npm:dateformat", - "data": { - "version": "3.0.3", - "packageName": "dateformat", - "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" - } - }, - "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@4.3.4": { - "type": "npm", - "name": "npm:debug@4.3.4", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.7", - "packageName": "debug", - "hash": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==" - } - }, - "npm:decamelize-keys": { - "type": "npm", - "name": "npm:decamelize-keys", - "data": { - "version": "1.1.1", - "packageName": "decamelize-keys", - "hash": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==" - } - }, - "npm:decamelize": { - "type": "npm", - "name": "npm:decamelize", - "data": { - "version": "1.2.0", - "packageName": "decamelize", - "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "0.7.0", - "packageName": "dedent", - "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" - } - }, - "npm:dedent@1.5.3": { - "type": "npm", - "name": "npm:dedent@1.5.3", - "data": { - "version": "1.5.3", - "packageName": "dedent", - "hash": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==" - } - }, - "npm:deep-eql": { - "type": "npm", - "name": "npm:deep-eql", - "data": { - "version": "3.0.1", - "packageName": "deep-eql", - "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" - } - }, - "npm:deep-equal-in-any-order": { - "type": "npm", - "name": "npm:deep-equal-in-any-order", - "data": { - "version": "1.0.28", - "packageName": "deep-equal-in-any-order", - "hash": "sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ==" - } - }, - "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-freeze-strict": { - "type": "npm", - "name": "npm:deep-freeze-strict", - "data": { - "version": "1.1.1", - "packageName": "deep-freeze-strict", - "hash": "sha512-QemROZMM2IvhAcCFvahdX2Vbm4S/txeq5rFYU9fh4mQP79WTMW5c/HkQ2ICl1zuzcDZdPZ6zarDxQeQMsVYoNA==" - } - }, - "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-require-extensions": { - "type": "npm", - "name": "npm:default-require-extensions", - "data": { - "version": "3.0.1", - "packageName": "default-require-extensions", - "hash": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.4", - "packageName": "define-data-property", - "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" - } - }, - "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:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - } - }, - "npm:deprecation": { - "type": "npm", - "name": "npm:deprecation", - "data": { - "version": "2.3.1", - "packageName": "deprecation", - "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - } - }, - "npm:detect-file": { - "type": "npm", - "name": "npm:detect-file", - "data": { - "version": "1.0.0", - "packageName": "detect-file", - "hash": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==" - } - }, - "npm:detect-indent@5.0.0": { - "type": "npm", - "name": "npm:detect-indent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "detect-indent", - "hash": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==" - } - }, - "npm:detect-indent": { - "type": "npm", - "name": "npm:detect-indent", - "data": { - "version": "6.1.0", - "packageName": "detect-indent", - "hash": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:diagnostic-channel-publishers": { - "type": "npm", - "name": "npm:diagnostic-channel-publishers", - "data": { - "version": "1.0.8", - "packageName": "diagnostic-channel-publishers", - "hash": "sha512-HmSm9hXxSPxA9BaLGY98QU1zsdjeCk113KjAYGPCen1ZP6mhVaTPzHd6UYv5r21DnWANi+f+NyPOHruGT9jpqQ==" - } - }, - "npm:diagnostic-channel": { - "type": "npm", - "name": "npm:diagnostic-channel", - "data": { - "version": "1.1.1", - "packageName": "diagnostic-channel", - "hash": "sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==" - } - }, - "npm:diff-sequences@25.2.6": { - "type": "npm", - "name": "npm:diff-sequences@25.2.6", - "data": { - "version": "25.2.6", - "packageName": "diff-sequences", - "hash": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "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:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:dot-prop": { - "type": "npm", - "name": "npm:dot-prop", - "data": { - "version": "5.3.0", - "packageName": "dot-prop", - "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - } - }, - "npm:dotenv-expand@10.0.0": { - "type": "npm", - "name": "npm:dotenv-expand@10.0.0", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "11.0.6", - "packageName": "dotenv-expand", - "hash": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==" - } - }, - "npm:dotenv@16.3.2": { - "type": "npm", - "name": "npm:dotenv@16.3.2", - "data": { - "version": "16.3.2", - "packageName": "dotenv", - "hash": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "16.4.5", - "packageName": "dotenv", - "hash": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" - } - }, - "npm:duplexer2": { - "type": "npm", - "name": "npm:duplexer2", - "data": { - "version": "0.1.4", - "packageName": "duplexer2", - "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "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: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.5.33", - "packageName": "electron-to-chromium", - "hash": "sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==" - } - }, - "npm:emitter-listener": { - "type": "npm", - "name": "npm:emitter-listener", - "data": { - "version": "1.1.2", - "packageName": "emitter-listener", - "hash": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "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:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:enabled": { - "type": "npm", - "name": "npm:enabled", - "data": { - "version": "2.0.0", - "packageName": "enabled", - "hash": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - } - }, - "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.17.1", - "packageName": "enhanced-resolve", - "hash": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==" - } - }, - "npm:enquirer@2.3.6": { - "type": "npm", - "name": "npm:enquirer@2.3.6", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.4.1", - "packageName": "enquirer", - "hash": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.3.0", - "packageName": "entities", - "hash": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" - } - }, - "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-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:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-stack-parser": { - "type": "npm", - "name": "npm:error-stack-parser", - "data": { - "version": "2.1.4", - "packageName": "error-stack-parser", - "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.23.3", - "packageName": "es-abstract", - "hash": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==" - } - }, - "npm:es-define-property": { - "type": "npm", - "name": "npm:es-define-property", - "data": { - "version": "1.0.0", - "packageName": "es-define-property", - "hash": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==" - } - }, - "npm:es-errors": { - "type": "npm", - "name": "npm:es-errors", - "data": { - "version": "1.3.0", - "packageName": "es-errors", - "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.5.4", - "packageName": "es-module-lexer", - "hash": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" - } - }, - "npm:es-object-atoms": { - "type": "npm", - "name": "npm:es-object-atoms", - "data": { - "version": "1.0.0", - "packageName": "es-object-atoms", - "hash": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.0.3", - "packageName": "es-set-tostringtag", - "hash": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.0.2", - "packageName": "es-shim-unscopables", - "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:es5-ext": { - "type": "npm", - "name": "npm:es5-ext", - "data": { - "version": "0.10.62", - "packageName": "es5-ext", - "hash": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==" - } - }, - "npm:es6-error": { - "type": "npm", - "name": "npm:es6-error", - "data": { - "version": "4.1.1", - "packageName": "es6-error", - "hash": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==" - } - }, - "npm:es6-iterator": { - "type": "npm", - "name": "npm:es6-iterator", - "data": { - "version": "2.0.3", - "packageName": "es6-iterator", - "hash": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==" - } - }, - "npm:es6-symbol": { - "type": "npm", - "name": "npm:es6-symbol", - "data": { - "version": "3.1.3", - "packageName": "es6-symbol", - "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" - } - }, - "npm:es6-weak-map": { - "type": "npm", - "name": "npm:es6-weak-map", - "data": { - "version": "2.0.3", - "packageName": "es6-weak-map", - "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.17.12", - "packageName": "esbuild", - "hash": "sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.2.0", - "packageName": "escalade", - "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "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:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "7.2.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.9", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" - } - }, - "npm:eslint-import-resolver-typescript": { - "type": "npm", - "name": "npm:eslint-import-resolver-typescript", - "data": { - "version": "3.6.1", - "packageName": "eslint-import-resolver-typescript", - "hash": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.12.0", - "packageName": "eslint-module-utils", - "hash": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==" - } - }, - "npm:eslint-plugin-eslint-comments": { - "type": "npm", - "name": "npm:eslint-plugin-eslint-comments", - "data": { - "version": "3.2.0", - "packageName": "eslint-plugin-eslint-comments", - "hash": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.31.0", - "packageName": "eslint-plugin-import", - "hash": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:eslint-utils@3.0.0": { - "type": "npm", - "name": "npm:eslint-utils@3.0.0", - "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": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "2.1.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "7.18.0", - "packageName": "eslint", - "hash": "sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==" - } - }, - "npm:esm": { - "type": "npm", - "name": "npm:esm", - "data": { - "version": "3.2.25", - "packageName": "esm", - "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "7.3.1", - "packageName": "espree", - "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" - } - }, - "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": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estraverse@5.3.0": { - "type": "npm", - "name": "npm:estraverse@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "2.0.2", - "packageName": "estree-walker", - "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:event-emitter": { - "type": "npm", - "name": "npm:event-emitter", - "data": { - "version": "0.3.5", - "packageName": "event-emitter", - "hash": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==" - } - }, - "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: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.0.0", - "packageName": "execa", - "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" - } - }, - "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:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expand-tilde": { - "type": "npm", - "name": "npm:expand-tilde", - "data": { - "version": "2.0.2", - "packageName": "expand-tilde", - "hash": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==" - } - }, - "npm:expect@25.5.0": { - "type": "npm", - "name": "npm:expect@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "expect", - "hash": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==" - } - }, - "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:ext": { - "type": "npm", - "name": "npm:ext", - "data": { - "version": "1.7.0", - "packageName": "ext", - "hash": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:extendable-error": { - "type": "npm", - "name": "npm:extendable-error", - "data": { - "version": "0.1.7", - "packageName": "extendable-error", - "hash": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.1.0", - "packageName": "external-editor", - "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" - } - }, - "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-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "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-safe-stringify": { - "type": "npm", - "name": "npm:fast-safe-stringify", - "data": { - "version": "2.0.7", - "packageName": "fast-safe-stringify", - "hash": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" - } - }, - "npm:fast-uri": { - "type": "npm", - "name": "npm:fast-uri", - "data": { - "version": "3.0.1", - "packageName": "fast-uri", - "hash": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" - } - }, - "npm:fast-xml-parser": { - "type": "npm", - "name": "npm:fast-xml-parser", - "data": { - "version": "4.2.7", - "packageName": "fast-xml-parser", - "hash": "sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.16.0", - "packageName": "fastq", - "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fecha": { - "type": "npm", - "name": "npm:fecha", - "data": { - "version": "4.2.3", - "packageName": "fecha", - "hash": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "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: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:fill-keys": { - "type": "npm", - "name": "npm:fill-keys", - "data": { - "version": "1.0.2", - "packageName": "fill-keys", - "hash": "sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "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-node-modules": { - "type": "npm", - "name": "npm:find-node-modules", - "data": { - "version": "2.1.3", - "packageName": "find-node-modules", - "hash": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==" - } - }, - "npm:find-root": { - "type": "npm", - "name": "npm:find-root", - "data": { - "version": "1.1.0", - "packageName": "find-root", - "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - } - }, - "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": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "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-yarn-workspace-root2": { - "type": "npm", - "name": "npm:find-yarn-workspace-root2", - "data": { - "version": "1.2.16", - "packageName": "find-yarn-workspace-root2", - "hash": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==" - } - }, - "npm:findit2": { - "type": "npm", - "name": "npm:findit2", - "data": { - "version": "2.2.3", - "packageName": "findit2", - "hash": "sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog==" - } - }, - "npm:findup-sync": { - "type": "npm", - "name": "npm:findup-sync", - "data": { - "version": "4.0.0", - "packageName": "findup-sync", - "hash": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==" - } - }, - "npm:first-chunk-stream": { - "type": "npm", - "name": "npm:first-chunk-stream", - "data": { - "version": "2.0.0", - "packageName": "first-chunk-stream", - "hash": "sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.9", - "packageName": "flatted", - "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" - } - }, - "npm:fn.name": { - "type": "npm", - "name": "npm:fn.name", - "data": { - "version": "1.1.0", - "packageName": "fn.name", - "hash": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.5", - "packageName": "follow-redirects", - "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" - } - }, - "npm:follow-redirects@1.15.9": { - "type": "npm", - "name": "npm:follow-redirects@1.15.9", - "data": { - "version": "1.15.9", - "packageName": "follow-redirects", - "hash": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.3", - "packageName": "for-each", - "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "2.0.0", - "packageName": "foreground-child", - "hash": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==" - } - }, - "npm:foreground-child@3.3.0": { - "type": "npm", - "name": "npm:foreground-child@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "foreground-child", - "hash": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - } - }, - "npm:form-data@2.3.3": { - "type": "npm", - "name": "npm:form-data@2.3.3", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "3.0.1", - "packageName": "form-data", - "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" - } - }, - "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:fromentries": { - "type": "npm", - "name": "npm:fromentries", - "data": { - "version": "1.3.2", - "packageName": "fromentries", - "hash": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==" - } - }, - "npm:front-matter": { - "type": "npm", - "name": "npm:front-matter", - "data": { - "version": "4.0.2", - "packageName": "front-matter", - "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" - } - }, - "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-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra@11.2.0": { - "type": "npm", - "name": "npm:fs-extra@11.2.0", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:fs-extra@7.0.1": { - "type": "npm", - "name": "npm:fs-extra@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "fs-extra", - "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" - } - }, - "npm:fs-extra@8.1.0": { - "type": "npm", - "name": "npm:fs-extra@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "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-minipass@2.1.0": { - "type": "npm", - "name": "npm:fs-minipass@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "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:fstream": { - "type": "npm", - "name": "npm:fstream", - "data": { - "version": "1.0.12", - "packageName": "fstream", - "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" - } - }, - "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: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: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-func-name": { - "type": "npm", - "name": "npm:get-func-name", - "data": { - "version": "2.0.2", - "packageName": "get-func-name", - "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.4", - "packageName": "get-intrinsic", - "hash": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==" - } - }, - "npm:get-own-enumerable-property-symbols": { - "type": "npm", - "name": "npm:get-own-enumerable-property-symbols", - "data": { - "version": "3.0.2", - "packageName": "get-own-enumerable-property-symbols", - "hash": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" - } - }, - "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-pkg-repo": { - "type": "npm", - "name": "npm:get-pkg-repo", - "data": { - "version": "4.2.1", - "packageName": "get-pkg-repo", - "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "5.1.1", - "packageName": "get-port", - "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" - } - }, - "npm:get-stdin": { - "type": "npm", - "name": "npm:get-stdin", - "data": { - "version": "8.0.0", - "packageName": "get-stdin", - "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" - } - }, - "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": "6.0.0", - "packageName": "get-stream", - "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" - } - }, - "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-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.2", - "packageName": "get-symbol-description", - "hash": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==" - } - }, - "npm:get-tsconfig": { - "type": "npm", - "name": "npm:get-tsconfig", - "data": { - "version": "4.8.1", - "packageName": "get-tsconfig", - "hash": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" - } - }, - "npm:git-raw-commits": { - "type": "npm", - "name": "npm:git-raw-commits", - "data": { - "version": "2.0.11", - "packageName": "git-raw-commits", - "hash": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==" - } - }, - "npm:git-raw-commits@3.0.0": { - "type": "npm", - "name": "npm:git-raw-commits@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "git-raw-commits", - "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" - } - }, - "npm:git-remote-origin-url": { - "type": "npm", - "name": "npm:git-remote-origin-url", - "data": { - "version": "2.0.0", - "packageName": "git-remote-origin-url", - "hash": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==" - } - }, - "npm:git-semver-tags@4.1.1": { - "type": "npm", - "name": "npm:git-semver-tags@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "git-semver-tags", - "hash": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==" - } - }, - "npm:git-semver-tags": { - "type": "npm", - "name": "npm:git-semver-tags", - "data": { - "version": "5.0.1", - "packageName": "git-semver-tags", - "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" - } - }, - "npm:git-up": { - "type": "npm", - "name": "npm:git-up", - "data": { - "version": "7.0.0", - "packageName": "git-up", - "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" - } - }, - "npm:git-url-parse": { - "type": "npm", - "name": "npm:git-url-parse", - "data": { - "version": "13.1.0", - "packageName": "git-url-parse", - "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" - } - }, - "npm:gitconfiglocal": { - "type": "npm", - "name": "npm:gitconfiglocal", - "data": { - "version": "1.0.0", - "packageName": "gitconfiglocal", - "hash": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-promise": { - "type": "npm", - "name": "npm:glob-promise", - "data": { - "version": "3.4.0", - "packageName": "glob-promise", - "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" - } - }, - "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:glob@10.4.5": { - "type": "npm", - "name": "npm:glob@10.4.5", - "data": { - "version": "10.4.5", - "packageName": "glob", - "hash": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==" - } - }, - "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": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.1.6", - "packageName": "glob", - "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" - } - }, - "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@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:glob@9.3.5": { - "type": "npm", - "name": "npm:glob@9.3.5", - "data": { - "version": "9.3.5", - "packageName": "glob", - "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" - } - }, - "npm:global-directory": { - "type": "npm", - "name": "npm:global-directory", - "data": { - "version": "4.0.1", - "packageName": "global-directory", - "hash": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "0.1.1", - "packageName": "global-dirs", - "hash": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==" - } - }, - "npm:global-modules": { - "type": "npm", - "name": "npm:global-modules", - "data": { - "version": "1.0.0", - "packageName": "global-modules", - "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" - } - }, - "npm:global-prefix": { - "type": "npm", - "name": "npm:global-prefix", - "data": { - "version": "1.0.2", - "packageName": "global-prefix", - "hash": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==" - } - }, - "npm:globals@11.12.0": { - "type": "npm", - "name": "npm:globals@11.12.0", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "12.4.0", - "packageName": "globals", - "hash": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.4", - "packageName": "globalthis", - "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "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:grapheme-splitter": { - "type": "npm", - "name": "npm:grapheme-splitter", - "data": { - "version": "1.0.4", - "packageName": "grapheme-splitter", - "hash": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.8", - "packageName": "handlebars", - "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" - } - }, - "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:hard-rejection": { - "type": "npm", - "name": "npm:hard-rejection", - "data": { - "version": "2.1.0", - "packageName": "hard-rejection", - "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" - } - }, - "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-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag@4.0.0": { - "type": "npm", - "name": "npm:has-flag@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-own-prop": { - "type": "npm", - "name": "npm:has-own-prop", - "data": { - "version": "2.0.0", - "packageName": "has-own-prop", - "hash": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.2", - "packageName": "has-property-descriptors", - "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.3", - "packageName": "has-proto", - "hash": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" - } - }, - "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.2", - "packageName": "has-tostringtag", - "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" - } - }, - "npm:has-unicode": { - "type": "npm", - "name": "npm:has-unicode", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - } - }, - "npm:hasha": { - "type": "npm", - "name": "npm:hasha", - "data": { - "version": "5.2.2", - "packageName": "hasha", - "hash": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==" - } - }, - "npm:hasown@2.0.0": { - "type": "npm", - "name": "npm:hasown@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.2", - "packageName": "hasown", - "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" - } - }, - "npm:homedir-polyfill": { - "type": "npm", - "name": "npm:homedir-polyfill", - "data": { - "version": "1.0.3", - "packageName": "homedir-polyfill", - "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" - } - }, - "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:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "3.0.8", - "packageName": "hosted-git-info", - "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" - } - }, - "npm:hosted-git-info@4.1.0": { - "type": "npm", - "name": "npm:hosted-git-info@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "hosted-git-info", - "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" - } - }, - "npm:hosted-git-info@6.1.1": { - "type": "npm", - "name": "npm:hosted-git-info@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "hosted-git-info", - "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" - } - }, - "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-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-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "4.0.1", - "packageName": "http-proxy-agent", - "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" - } - }, - "npm:http-proxy-agent@5.0.0": { - "type": "npm", - "name": "npm:http-proxy-agent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.2.0", - "packageName": "http-signature", - "hash": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==" - } - }, - "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:human-id": { - "type": "npm", - "name": "npm:human-id", - "data": { - "version": "1.0.2", - "packageName": "human-id", - "hash": "sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals@2.1.0": { - "type": "npm", - "name": "npm:human-signals@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "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.1", - "packageName": "husky", - "hash": "sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==" - } - }, - "npm:i18next": { - "type": "npm", - "name": "npm:i18next", - "data": { - "version": "19.0.2", - "packageName": "i18next", - "hash": "sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "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:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "5.0.1", - "packageName": "ignore-walk", - "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" - } - }, - "npm:ignore-walk@6.0.5": { - "type": "npm", - "name": "npm:ignore-walk@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "ignore-walk", - "hash": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==" - } - }, - "npm:ignore@4.0.6": { - "type": "npm", - "name": "npm:ignore@4.0.6", - "data": { - "version": "4.0.6", - "packageName": "ignore", - "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.0", - "packageName": "ignore", - "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:import-in-the-middle": { - "type": "npm", - "name": "npm:import-in-the-middle", - "data": { - "version": "1.11.2", - "packageName": "import-in-the-middle", - "hash": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==" - } - }, - "npm:import-local@3.1.0": { - "type": "npm", - "name": "npm:import-local@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.2.0", - "packageName": "import-local", - "hash": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" - } - }, - "npm:import-meta-resolve": { - "type": "npm", - "name": "npm:import-meta-resolve", - "data": { - "version": "4.1.0", - "packageName": "import-meta-resolve", - "hash": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:infer-owner": { - "type": "npm", - "name": "npm:infer-owner", - "data": { - "version": "1.0.4", - "packageName": "infer-owner", - "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - } - }, - "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:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:ini@4.1.1": { - "type": "npm", - "name": "npm:ini@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ini", - "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" - } - }, - "npm:init-package-json": { - "type": "npm", - "name": "npm:init-package-json", - "data": { - "version": "5.0.0", - "packageName": "init-package-json", - "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" - } - }, - "npm:inquirer": { - "type": "npm", - "name": "npm:inquirer", - "data": { - "version": "8.2.5", - "packageName": "inquirer", - "hash": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.7", - "packageName": "internal-slot", - "hash": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==" - } - }, - "npm:interpret": { - "type": "npm", - "name": "npm:interpret", - "data": { - "version": "1.4.0", - "packageName": "interpret", - "hash": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" - } - }, - "npm:intl-messageformat-parser": { - "type": "npm", - "name": "npm:intl-messageformat-parser", - "data": { - "version": "6.1.2", - "packageName": "intl-messageformat-parser", - "hash": "sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==" - } - }, - "npm:ip-address": { - "type": "npm", - "name": "npm:ip-address", - "data": { - "version": "9.0.5", - "packageName": "ip-address", - "hash": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.4", - "packageName": "is-array-buffer", - "hash": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-arrayish@0.3.2": { - "type": "npm", - "name": "npm:is-arrayish@0.3.2", - "data": { - "version": "0.3.2", - "packageName": "is-arrayish", - "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.4", - "packageName": "is-bigint", - "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - } - }, - "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-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-core-module@2.15.1": { - "type": "npm", - "name": "npm:is-core-module@2.15.1", - "data": { - "version": "2.15.1", - "packageName": "is-core-module", - "hash": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==" - } - }, - "npm:is-data-view": { - "type": "npm", - "name": "npm:is-data-view", - "data": { - "version": "1.0.1", - "packageName": "is-data-view", - "hash": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==" - } - }, - "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-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-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-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.3", - "packageName": "is-negative-zero", - "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" - } - }, - "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-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-obj": { - "type": "npm", - "name": "npm:is-obj", - "data": { - "version": "1.0.1", - "packageName": "is-obj", - "hash": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" - } - }, - "npm:is-obj@2.0.0": { - "type": "npm", - "name": "npm:is-obj@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-obj", - "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - } - }, - "npm:is-object": { - "type": "npm", - "name": "npm:is-object", - "data": { - "version": "1.0.2", - "packageName": "is-object", - "hash": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" - } - }, - "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: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-plain-object@5.0.0": { - "type": "npm", - "name": "npm:is-plain-object@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "is-plain-object", - "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" - } - }, - "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-regexp": { - "type": "npm", - "name": "npm:is-regexp", - "data": { - "version": "1.0.0", - "packageName": "is-regexp", - "hash": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.3", - "packageName": "is-shared-array-buffer", - "hash": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==" - } - }, - "npm:is-ssh": { - "type": "npm", - "name": "npm:is-ssh", - "data": { - "version": "1.4.0", - "packageName": "is-ssh", - "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.0", - "packageName": "is-stream", - "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - } - }, - "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-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-subdir": { - "type": "npm", - "name": "npm:is-subdir", - "data": { - "version": "1.2.0", - "packageName": "is-subdir", - "hash": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==" - } - }, - "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": "1.0.1", - "packageName": "is-text-path", - "hash": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.13", - "packageName": "is-typed-array", - "hash": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==" - } - }, - "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-utf8": { - "type": "npm", - "name": "npm:is-utf8", - "data": { - "version": "0.2.1", - "packageName": "is-utf8", - "hash": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" - } - }, - "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-windows": { - "type": "npm", - "name": "npm:is-windows", - "data": { - "version": "1.0.2", - "packageName": "is-windows", - "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "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": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:isbinaryfile": { - "type": "npm", - "name": "npm:isbinaryfile", - "data": { - "version": "4.0.10", - "packageName": "isbinaryfile", - "hash": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - } - }, - "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-hook": { - "type": "npm", - "name": "npm:istanbul-lib-hook", - "data": { - "version": "3.0.0", - "packageName": "istanbul-lib-hook", - "hash": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "4.0.3", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==" - } - }, - "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@6.0.3": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==" - } - }, - "npm:istanbul-lib-processinfo": { - "type": "npm", - "name": "npm:istanbul-lib-processinfo", - "data": { - "version": "2.0.3", - "packageName": "istanbul-lib-processinfo", - "hash": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==" - } - }, - "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.7", - "packageName": "istanbul-reports", - "hash": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "3.4.3", - "packageName": "jackspeak", - "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.7", - "packageName": "jake", - "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" - } - }, - "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: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.5.0", - "packageName": "jest-config", - "hash": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==" - } - }, - "npm:jest-config@29.7.0": { - "type": "npm", - "name": "npm:jest-config@29.7.0", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff@25.5.0": { - "type": "npm", - "name": "npm:jest-diff@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "jest-diff", - "hash": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==" - } - }, - "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.5.0", - "packageName": "jest-environment-node", - "hash": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==" - } - }, - "npm:jest-environment-node@29.7.0": { - "type": "npm", - "name": "npm:jest-environment-node@29.7.0", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-esm-transformer": { - "type": "npm", - "name": "npm:jest-esm-transformer", - "data": { - "version": "1.0.0", - "packageName": "jest-esm-transformer", - "hash": "sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==" - } - }, - "npm:jest-extended": { - "type": "npm", - "name": "npm:jest-extended", - "data": { - "version": "3.2.3", - "packageName": "jest-extended", - "hash": "sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA==" - } - }, - "npm:jest-get-type@25.2.6": { - "type": "npm", - "name": "npm:jest-get-type@25.2.6", - "data": { - "version": "25.2.6", - "packageName": "jest-get-type", - "hash": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==" - } - }, - "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-junit": { - "type": "npm", - "name": "npm:jest-junit", - "data": { - "version": "15.0.0", - "packageName": "jest-junit", - "hash": "sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==" - } - }, - "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@25.5.0": { - "type": "npm", - "name": "npm:jest-matcher-utils@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==" - } - }, - "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@25.5.0": { - "type": "npm", - "name": "npm:jest-message-util@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "jest-message-util", - "hash": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==" - } - }, - "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-regex-util@25.2.6": { - "type": "npm", - "name": "npm:jest-regex-util@25.2.6", - "data": { - "version": "25.2.6", - "packageName": "jest-regex-util", - "hash": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==" - } - }, - "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-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:jest-resolve@25.5.1": { - "type": "npm", - "name": "npm:jest-resolve@25.5.1", - "data": { - "version": "25.5.1", - "packageName": "jest-resolve", - "hash": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "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": "25.5.1", - "packageName": "jest-snapshot", - "hash": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==" - } - }, - "npm:jest-snapshot@29.7.0": { - "type": "npm", - "name": "npm:jest-snapshot@29.7.0", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-sonar": { - "type": "npm", - "name": "npm:jest-sonar", - "data": { - "version": "0.2.16", - "packageName": "jest-sonar", - "hash": "sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==" - } - }, - "npm:jest-specific-snapshot": { - "type": "npm", - "name": "npm:jest-specific-snapshot", - "data": { - "version": "3.0.0", - "packageName": "jest-specific-snapshot", - "hash": "sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==" - } - }, - "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@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:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.5.0", - "packageName": "jest", - "hash": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "1.21.6", - "packageName": "jiti", - "hash": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "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:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - } - }, - "npm:jsbn@1.1.0": { - "type": "npm", - "name": "npm:jsbn@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "jsbn", - "hash": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" - } - }, - "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": "3.0.2", - "packageName": "jsesc", - "hash": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" - } - }, - "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@2.3.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "3.0.2", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==" - } - }, - "npm:json-schema-ref-parser": { - "type": "npm", - "name": "npm:json-schema-ref-parser", - "data": { - "version": "9.0.9", - "packageName": "json-schema-ref-parser", - "hash": "sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==" - } - }, - "npm:json-schema-to-typescript": { - "type": "npm", - "name": "npm:json-schema-to-typescript", - "data": { - "version": "10.0.3", - "packageName": "json-schema-to-typescript", - "hash": "sha512-CKM7XZqjKhsC96RWTdczTZc5KSv1PfgwGjprf7poO0osmgKmFp2Sj10jCi96gu73naVLJtrX8x7nAf9Vq2fl2Q==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse@1.0.0": { - "type": "npm", - "name": "npm:json-schema-traverse@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "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-stable-stringify": { - "type": "npm", - "name": "npm:json-stable-stringify", - "data": { - "version": "1.1.1", - "packageName": "json-stable-stringify", - "hash": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==" - } - }, - "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@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: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@4.0.0": { - "type": "npm", - "name": "npm:jsonfile@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonify": { - "type": "npm", - "name": "npm:jsonify", - "data": { - "version": "0.0.1", - "packageName": "jsonify", - "hash": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "1.4.2", - "packageName": "jsprim", - "hash": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:klaw-sync": { - "type": "npm", - "name": "npm:klaw-sync", - "data": { - "version": "6.0.0", - "packageName": "klaw-sync", - "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" - } - }, - "npm:kleur@3.0.3": { - "type": "npm", - "name": "npm:kleur@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:kuler": { - "type": "npm", - "name": "npm:kuler", - "data": { - "version": "2.0.0", - "packageName": "kuler", - "hash": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - } - }, - "npm:lcov-parse": { - "type": "npm", - "name": "npm:lcov-parse", - "data": { - "version": "1.0.0", - "packageName": "lcov-parse", - "hash": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==" - } - }, - "npm:lerna": { - "type": "npm", - "name": "npm:lerna", - "data": { - "version": "7.4.2", - "packageName": "lerna", - "hash": "sha512-gxavfzHfJ4JL30OvMunmlm4Anw7d7Tq6tdVHzUukLdS9nWnxCN/QB21qR+VJYp5tcyXogHKbdUEGh6qmeyzxSA==" - } - }, - "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:libnpmaccess": { - "type": "npm", - "name": "npm:libnpmaccess", - "data": { - "version": "7.0.2", - "packageName": "libnpmaccess", - "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" - } - }, - "npm:libnpmpublish": { - "type": "npm", - "name": "npm:libnpmpublish", - "data": { - "version": "7.3.0", - "packageName": "libnpmpublish", - "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" - } - }, - "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: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:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "10.5.3", - "packageName": "lint-staged", - "hash": "sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==" - } - }, - "npm:listenercount": { - "type": "npm", - "name": "npm:listenercount", - "data": { - "version": "1.0.1", - "packageName": "listenercount", - "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:load-json-file@4.0.0": { - "type": "npm", - "name": "npm:load-json-file@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "load-json-file", - "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" - } - }, - "npm:load-json-file": { - "type": "npm", - "name": "npm:load-json-file", - "data": { - "version": "6.2.0", - "packageName": "load-json-file", - "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" - } - }, - "npm:load-yaml-file": { - "type": "npm", - "name": "npm:load-yaml-file", - "data": { - "version": "0.2.0", - "packageName": "load-yaml-file", - "hash": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "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": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "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:lodash.flattendeep": { - "type": "npm", - "name": "npm:lodash.flattendeep", - "data": { - "version": "4.4.0", - "packageName": "lodash.flattendeep", - "hash": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" - } - }, - "npm:lodash.ismatch": { - "type": "npm", - "name": "npm:lodash.ismatch", - "data": { - "version": "4.4.0", - "packageName": "lodash.ismatch", - "hash": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==" - } - }, - "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.map": { - "type": "npm", - "name": "npm:lodash.map", - "data": { - "version": "4.6.0", - "packageName": "lodash.map", - "hash": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" - } - }, - "npm:lodash.mapvalues": { - "type": "npm", - "name": "npm:lodash.mapvalues", - "data": { - "version": "4.6.0", - "packageName": "lodash.mapvalues", - "hash": "sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==" - } - }, - "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.mergewith": { - "type": "npm", - "name": "npm:lodash.mergewith", - "data": { - "version": "4.6.2", - "packageName": "lodash.mergewith", - "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" - } - }, - "npm:lodash.startcase": { - "type": "npm", - "name": "npm:lodash.startcase", - "data": { - "version": "4.4.0", - "packageName": "lodash.startcase", - "hash": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==" - } - }, - "npm:lodash.truncate": { - "type": "npm", - "name": "npm:lodash.truncate", - "data": { - "version": "4.4.2", - "packageName": "lodash.truncate", - "hash": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash@4.17.15": { - "type": "npm", - "name": "npm:lodash@4.17.15", - "data": { - "version": "4.17.15", - "packageName": "lodash", - "hash": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" - } - }, - "npm:lodash@4.17.20": { - "type": "npm", - "name": "npm:lodash@4.17.20", - "data": { - "version": "4.17.20", - "packageName": "lodash", - "hash": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:log-driver": { - "type": "npm", - "name": "npm:log-driver", - "data": { - "version": "1.2.7", - "packageName": "log-driver", - "hash": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==" - } - }, - "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:logform": { - "type": "npm", - "name": "npm:logform", - "data": { - "version": "2.6.0", - "packageName": "logform", - "hash": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==" - } - }, - "npm:longest": { - "type": "npm", - "name": "npm:longest", - "data": { - "version": "2.0.1", - "packageName": "longest", - "hash": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==" - } - }, - "npm:loud-rejection": { - "type": "npm", - "name": "npm:loud-rejection", - "data": { - "version": "2.2.0", - "packageName": "loud-rejection", - "hash": "sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==" - } - }, - "npm:lru-cache@10.4.3": { - "type": "npm", - "name": "npm:lru-cache@10.4.3", - "data": { - "version": "10.4.3", - "packageName": "lru-cache", - "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" - } - }, - "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@5.1.1": { - "type": "npm", - "name": "npm:lru-cache@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "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-queue": { - "type": "npm", - "name": "npm:lru-queue", - "data": { - "version": "0.1.0", - "packageName": "lru-queue", - "hash": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.11", - "packageName": "magic-string", - "hash": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==" - } - }, - "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: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-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.6", - "packageName": "make-error", - "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - } - }, - "npm:make-fetch-happen@10.2.1": { - "type": "npm", - "name": "npm:make-fetch-happen@10.2.1", - "data": { - "version": "10.2.1", - "packageName": "make-fetch-happen", - "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "11.1.1", - "packageName": "make-fetch-happen", - "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:map-obj@1.0.1": { - "type": "npm", - "name": "npm:map-obj@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "map-obj", - "hash": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==" - } - }, - "npm:map-obj": { - "type": "npm", - "name": "npm:map-obj", - "data": { - "version": "4.3.0", - "packageName": "map-obj", - "hash": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" - } - }, - "npm:matomo-tracker": { - "type": "npm", - "name": "npm:matomo-tracker", - "data": { - "version": "2.2.2", - "packageName": "matomo-tracker", - "hash": "sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ==" - } - }, - "npm:mem-fs-editor": { - "type": "npm", - "name": "npm:mem-fs-editor", - "data": { - "version": "9.4.0", - "packageName": "mem-fs-editor", - "hash": "sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==" - } - }, - "npm:mem-fs": { - "type": "npm", - "name": "npm:mem-fs", - "data": { - "version": "2.1.0", - "packageName": "mem-fs", - "hash": "sha512-55vFOT4rfJx/9uoWntNrfzEj9209rd26spsSvKsCVBfOPH001YS5IakfElhcyagieC4uL++Ry/XDcwvgxF4/zQ==" - } - }, - "npm:memoizee": { - "type": "npm", - "name": "npm:memoizee", - "data": { - "version": "0.4.15", - "packageName": "memoizee", - "hash": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==" - } - }, - "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": "6.1.1", - "packageName": "meow", - "hash": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==" - } - }, - "npm:meow@8.1.2": { - "type": "npm", - "name": "npm:meow@8.1.2", - "data": { - "version": "8.1.2", - "packageName": "meow", - "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.3", - "packageName": "merge-descriptors", - "hash": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" - } - }, - "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:merge": { - "type": "npm", - "name": "npm:merge", - "data": { - "version": "2.1.1", - "packageName": "merge", - "hash": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==" - } - }, - "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:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:min-indent": { - "type": "npm", - "name": "npm:min-indent", - "data": { - "version": "1.0.1", - "packageName": "min-indent", - "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" - } - }, - "npm:minimatch@3.0.5": { - "type": "npm", - "name": "npm:minimatch@3.0.5", - "data": { - "version": "3.0.5", - "packageName": "minimatch", - "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "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@8.0.4": { - "type": "npm", - "name": "npm:minimatch@8.0.4", - "data": { - "version": "8.0.4", - "packageName": "minimatch", - "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" - } - }, - "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@9.0.5": { - "type": "npm", - "name": "npm:minimatch@9.0.5", - "data": { - "version": "9.0.5", - "packageName": "minimatch", - "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" - } - }, - "npm:minimist-options": { - "type": "npm", - "name": "npm:minimist-options", - "data": { - "version": "4.1.0", - "packageName": "minimist-options", - "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" - } - }, - "npm:minimist@1.2.7": { - "type": "npm", - "name": "npm:minimist@1.2.7", - "data": { - "version": "1.2.7", - "packageName": "minimist", - "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "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-fetch@2.1.2": { - "type": "npm", - "name": "npm:minipass-fetch@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "minipass-fetch", - "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "3.0.5", - "packageName": "minipass-fetch", - "hash": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==" - } - }, - "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.2", - "packageName": "minipass-json-stream", - "hash": "sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==" - } - }, - "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: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@4.2.8": { - "type": "npm", - "name": "npm:minipass@4.2.8", - "data": { - "version": "4.2.8", - "packageName": "minipass", - "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minipass@7.1.2": { - "type": "npm", - "name": "npm:minipass@7.1.2", - "data": { - "version": "7.1.2", - "packageName": "minipass", - "hash": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mixme": { - "type": "npm", - "name": "npm:mixme", - "data": { - "version": "0.5.10", - "packageName": "mixme", - "hash": "sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==" - } - }, - "npm:mkdirp@0.5.6": { - "type": "npm", - "name": "npm:mkdirp@0.5.6", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mock-fs": { - "type": "npm", - "name": "npm:mock-fs", - "data": { - "version": "5.2.0", - "packageName": "mock-fs", - "hash": "sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw==" - } - }, - "npm:modify-values": { - "type": "npm", - "name": "npm:modify-values", - "data": { - "version": "1.0.1", - "packageName": "modify-values", - "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" - } - }, - "npm:module-details-from-path": { - "type": "npm", - "name": "npm:module-details-from-path", - "data": { - "version": "1.0.3", - "packageName": "module-details-from-path", - "hash": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==" - } - }, - "npm:module-not-found-error": { - "type": "npm", - "name": "npm:module-not-found-error", - "data": { - "version": "1.0.1", - "packageName": "module-not-found-error", - "hash": "sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==" - } - }, - "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": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:multimatch": { - "type": "npm", - "name": "npm:multimatch", - "data": { - "version": "5.0.0", - "packageName": "multimatch", - "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" - } - }, - "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": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:mz": { - "type": "npm", - "name": "npm:mz", - "data": { - "version": "2.7.0", - "packageName": "mz", - "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" - } - }, - "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: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:next-tick": { - "type": "npm", - "name": "npm:next-tick", - "data": { - "version": "1.1.0", - "packageName": "next-tick", - "hash": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "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-fetch@2.6.7": { - "type": "npm", - "name": "npm:node-fetch@2.6.7", - "data": { - "version": "2.6.7", - "packageName": "node-fetch", - "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.6.9", - "packageName": "node-fetch", - "hash": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.8.2", - "packageName": "node-gyp-build", - "hash": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "9.4.1", - "packageName": "node-gyp", - "hash": "sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==" - } - }, - "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-preload": { - "type": "npm", - "name": "npm:node-preload", - "data": { - "version": "0.2.1", - "packageName": "node-preload", - "hash": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.18", - "packageName": "node-releases", - "hash": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "6.0.0", - "packageName": "nopt", - "hash": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" - } - }, - "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-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "3.0.3", - "packageName": "normalize-package-data", - "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" - } - }, - "npm:normalize-package-data@5.0.0": { - "type": "npm", - "name": "npm:normalize-package-data@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "1.1.2", - "packageName": "npm-bundled", - "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" - } - }, - "npm:npm-bundled@3.0.1": { - "type": "npm", - "name": "npm:npm-bundled@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "npm-bundled", - "hash": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==" - } - }, - "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": "1.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" - } - }, - "npm:npm-normalize-package-bin@3.0.1": { - "type": "npm", - "name": "npm:npm-normalize-package-bin@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-package-arg@10.1.0": { - "type": "npm", - "name": "npm:npm-package-arg@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "npm-package-arg", - "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "8.1.1", - "packageName": "npm-package-arg", - "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "5.1.1", - "packageName": "npm-packlist", - "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" - } - }, - "npm:npm-packlist@7.0.4": { - "type": "npm", - "name": "npm:npm-packlist@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "npm-packlist", - "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "8.0.2", - "packageName": "npm-pick-manifest", - "hash": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==" - } - }, - "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-run-all": { - "type": "npm", - "name": "npm:npm-run-all", - "data": { - "version": "4.1.5", - "packageName": "npm-run-all", - "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" - } - }, - "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:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.13", - "packageName": "nwsapi", - "hash": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==" - } - }, - "npm:nx@16.10.0": { - "type": "npm", - "name": "npm:nx@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "nx", - "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "19.8.4", - "packageName": "nx", - "hash": "sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA==" - } - }, - "npm:nyc": { - "type": "npm", - "name": "npm:nyc", - "data": { - "version": "15.1.0", - "packageName": "nyc", - "hash": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==" - } - }, - "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.13.2", - "packageName": "object-inspect", - "hash": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" - } - }, - "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.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.8", - "packageName": "object.fromentries", - "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" - } - }, - "npm:object.groupby": { - "type": "npm", - "name": "npm:object.groupby", - "data": { - "version": "1.0.3", - "packageName": "object.groupby", - "hash": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.2.0", - "packageName": "object.values", - "hash": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:one-time": { - "type": "npm", - "name": "npm:one-time", - "data": { - "version": "1.0.0", - "packageName": "one-time", - "hash": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "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.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora@5.4.1": { - "type": "npm", - "name": "npm:ora@5.4.1", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:outdent": { - "type": "npm", - "name": "npm:outdent", - "data": { - "version": "0.5.0", - "packageName": "outdent", - "hash": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==" - } - }, - "npm:p-filter": { - "type": "npm", - "name": "npm:p-filter", - "data": { - "version": "2.1.0", - "packageName": "p-filter", - "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "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-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@3.1.0": { - "type": "npm", - "name": "npm:p-limit@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "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": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "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-map-series": { - "type": "npm", - "name": "npm:p-map-series", - "data": { - "version": "2.1.0", - "packageName": "p-map-series", - "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" - } - }, - "npm:p-map@2.1.0": { - "type": "npm", - "name": "npm:p-map@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "p-map", - "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - } - }, - "npm:p-map@3.0.0": { - "type": "npm", - "name": "npm:p-map@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-map", - "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-pipe": { - "type": "npm", - "name": "npm:p-pipe", - "data": { - "version": "3.1.0", - "packageName": "p-pipe", - "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" - } - }, - "npm:p-queue": { - "type": "npm", - "name": "npm:p-queue", - "data": { - "version": "6.6.2", - "packageName": "p-queue", - "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" - } - }, - "npm:p-reduce": { - "type": "npm", - "name": "npm:p-reduce", - "data": { - "version": "2.1.0", - "packageName": "p-reduce", - "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - } - }, - "npm:p-timeout": { - "type": "npm", - "name": "npm:p-timeout", - "data": { - "version": "3.2.0", - "packageName": "p-timeout", - "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" - } - }, - "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:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:p-waterfall": { - "type": "npm", - "name": "npm:p-waterfall", - "data": { - "version": "2.1.1", - "packageName": "p-waterfall", - "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" - } - }, - "npm:package-hash": { - "type": "npm", - "name": "npm:package-hash", - "data": { - "version": "4.0.0", - "packageName": "package-hash", - "hash": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==" - } - }, - "npm:package-json-from-dist": { - "type": "npm", - "name": "npm:package-json-from-dist", - "data": { - "version": "1.0.1", - "packageName": "package-json-from-dist", - "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "15.2.0", - "packageName": "pacote", - "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" - } - }, - "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-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:parse-passwd": { - "type": "npm", - "name": "npm:parse-passwd", - "data": { - "version": "1.0.0", - "packageName": "parse-passwd", - "hash": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==" - } - }, - "npm:parse-path": { - "type": "npm", - "name": "npm:parse-path", - "data": { - "version": "7.0.0", - "packageName": "parse-path", - "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" - } - }, - "npm:parse-url": { - "type": "npm", - "name": "npm:parse-url", - "data": { - "version": "8.1.0", - "packageName": "parse-url", - "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "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-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "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-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key@3.1.1": { - "type": "npm", - "name": "npm:path-key@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.11.1", - "packageName": "path-scurry", - "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" - } - }, - "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:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:pathval": { - "type": "npm", - "name": "npm:pathval", - "data": { - "version": "1.1.1", - "packageName": "pathval", - "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" - } - }, - "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.1.0", - "packageName": "picocolors", - "hash": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.3.1", - "packageName": "pidtree", - "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" - } - }, - "npm:pify@2.3.0": { - "type": "npm", - "name": "npm:pify@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "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@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": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "5.0.0", - "packageName": "pify", - "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "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: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:possible-typed-array-names": { - "type": "npm", - "name": "npm:possible-typed-array-names", - "data": { - "version": "1.0.0", - "packageName": "possible-typed-array-names", - "hash": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.47", - "packageName": "postcss", - "hash": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==" - } - }, - "npm:preferred-pm": { - "type": "npm", - "name": "npm:preferred-pm", - "data": { - "version": "3.1.4", - "packageName": "preferred-pm", - "hash": "sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==" - } - }, - "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.7", - "packageName": "prettier", - "hash": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==" - } - }, - "npm:pretty-format@25.5.0": { - "type": "npm", - "name": "npm:pretty-format@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "pretty-format", - "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" - } - }, - "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:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" - } - }, - "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-on-spawn": { - "type": "npm", - "name": "npm:process-on-spawn", - "data": { - "version": "1.0.0", - "packageName": "process-on-spawn", - "hash": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:promzard": { - "type": "npm", - "name": "npm:promzard", - "data": { - "version": "1.0.2", - "packageName": "promzard", - "hash": "sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==" - } - }, - "npm:protocols": { - "type": "npm", - "name": "npm:protocols", - "data": { - "version": "2.0.1", - "packageName": "protocols", - "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:proxyquire": { - "type": "npm", - "name": "npm:proxyquire", - "data": { - "version": "2.1.3", - "packageName": "proxyquire", - "hash": "sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==" - } - }, - "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.2", - "packageName": "pump", - "hash": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==" - } - }, - "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.1.0", - "packageName": "pure-rand", - "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" - } - }, - "npm:q": { - "type": "npm", - "name": "npm:q", - "data": { - "version": "1.5.1", - "packageName": "q", - "hash": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.5.3", - "packageName": "qs", - "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - } - }, - "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-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "4.0.1", - "packageName": "quick-lru", - "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "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:read-cmd-shim": { - "type": "npm", - "name": "npm:read-cmd-shim", - "data": { - "version": "4.0.0", - "packageName": "read-cmd-shim", - "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "3.0.2", - "packageName": "read-package-json-fast", - "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" - } - }, - "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-pkg-up": { - "type": "npm", - "name": "npm:read-pkg-up", - "data": { - "version": "3.0.0", - "packageName": "read-pkg-up", - "hash": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==" - } - }, - "npm:read-pkg-up@7.0.1": { - "type": "npm", - "name": "npm:read-pkg-up@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "read-pkg-up", - "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" - } - }, - "npm:read-pkg": { - "type": "npm", - "name": "npm:read-pkg", - "data": { - "version": "3.0.0", - "packageName": "read-pkg", - "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" - } - }, - "npm:read-pkg@5.2.0": { - "type": "npm", - "name": "npm:read-pkg@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "read-pkg", - "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" - } - }, - "npm:read-yaml-file": { - "type": "npm", - "name": "npm:read-yaml-file", - "data": { - "version": "1.1.0", - "packageName": "read-yaml-file", - "hash": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==" - } - }, - "npm:read": { - "type": "npm", - "name": "npm:read", - "data": { - "version": "2.1.0", - "packageName": "read", - "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" - } - }, - "npm:read@3.0.1": { - "type": "npm", - "name": "npm:read@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "read", - "hash": "sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==" - } - }, - "npm:readable-stream@2.3.8": { - "type": "npm", - "name": "npm:readable-stream@2.3.8", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:realpath-native": { - "type": "npm", - "name": "npm:realpath-native", - "data": { - "version": "2.0.0", - "packageName": "realpath-native", - "hash": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==" - } - }, - "npm:rechoir": { - "type": "npm", - "name": "npm:rechoir", - "data": { - "version": "0.6.2", - "packageName": "rechoir", - "hash": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==" - } - }, - "npm:redent": { - "type": "npm", - "name": "npm:redent", - "data": { - "version": "3.0.0", - "packageName": "redent", - "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regexp-to-ast": { - "type": "npm", - "name": "npm:regexp-to-ast", - "data": { - "version": "0.5.0", - "packageName": "regexp-to-ast", - "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.3", - "packageName": "regexp.prototype.flags", - "hash": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.2.0", - "packageName": "regexpp", - "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - } - }, - "npm:release-zalgo": { - "type": "npm", - "name": "npm:release-zalgo", - "data": { - "version": "1.0.0", - "packageName": "release-zalgo", - "hash": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==" - } - }, - "npm:remove-trailing-separator": { - "type": "npm", - "name": "npm:remove-trailing-separator", - "data": { - "version": "1.1.0", - "packageName": "remove-trailing-separator", - "hash": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" - } - }, - "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-ext": { - "type": "npm", - "name": "npm:replace-ext", - "data": { - "version": "1.0.1", - "packageName": "replace-ext", - "hash": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" - } - }, - "npm:request": { - "type": "npm", - "name": "npm:request", - "data": { - "version": "2.88.2", - "packageName": "request", - "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" - } - }, - "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:require-in-the-middle": { - "type": "npm", - "name": "npm:require-in-the-middle", - "data": { - "version": "7.4.0", - "packageName": "require-in-the-middle", - "hash": "sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==" - } - }, - "npm:require-main-filename": { - "type": "npm", - "name": "npm:require-main-filename", - "data": { - "version": "2.0.0", - "packageName": "require-main-filename", - "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "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-dir": { - "type": "npm", - "name": "npm:resolve-dir", - "data": { - "version": "1.0.1", - "packageName": "resolve-dir", - "hash": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==" - } - }, - "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:resolve-global": { - "type": "npm", - "name": "npm:resolve-global", - "data": { - "version": "1.0.0", - "packageName": "resolve-global", - "hash": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==" - } - }, - "npm:resolve-pkg-maps": { - "type": "npm", - "name": "npm:resolve-pkg-maps", - "data": { - "version": "1.0.0", - "packageName": "resolve-pkg-maps", - "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve@1.1.7": { - "type": "npm", - "name": "npm:resolve@1.1.7", - "data": { - "version": "1.1.7", - "packageName": "resolve", - "hash": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - } - }, - "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.4.1", - "packageName": "rfdc", - "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" - } - }, - "npm:rimraf@2.7.1": { - "type": "npm", - "name": "npm:rimraf@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "rimraf", - "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@4.4.1": { - "type": "npm", - "name": "npm:rimraf@4.4.1", - "data": { - "version": "4.4.1", - "packageName": "rimraf", - "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" - } - }, - "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-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.1.2", - "packageName": "safe-array-concat", - "hash": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==" - } - }, - "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": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.0.3", - "packageName": "safe-regex-test", - "hash": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==" - } - }, - "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:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "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@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@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.3.2": { - "type": "npm", - "name": "npm:semver@7.3.2", - "data": { - "version": "7.3.2", - "packageName": "semver", - "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.3.7", - "packageName": "semver", - "hash": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" - } - }, - "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.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:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.2", - "packageName": "serialize-javascript", - "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.2", - "packageName": "set-function-length", - "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.2", - "packageName": "set-function-name", - "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" - } - }, - "npm:setimmediate": { - "type": "npm", - "name": "npm:setimmediate", - "data": { - "version": "1.0.5", - "packageName": "setimmediate", - "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command@2.0.0": { - "type": "npm", - "name": "npm:shebang-command@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "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": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:shelljs": { - "type": "npm", - "name": "npm:shelljs", - "data": { - "version": "0.8.5", - "packageName": "shelljs", - "hash": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" - } - }, - "npm:shimmer": { - "type": "npm", - "name": "npm:shimmer", - "data": { - "version": "1.2.1", - "packageName": "shimmer", - "hash": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" - } - }, - "npm:shx": { - "type": "npm", - "name": "npm:shx", - "data": { - "version": "0.3.3", - "packageName": "shx", - "hash": "sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.6", - "packageName": "side-channel", - "hash": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==" - } - }, - "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: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:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "1.9.0", - "packageName": "sigstore", - "hash": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==" - } - }, - "npm:simple-git": { - "type": "npm", - "name": "npm:simple-git", - "data": { - "version": "3.12.0", - "packageName": "simple-git", - "hash": "sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.2", - "packageName": "simple-swizzle", - "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "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:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:smartwrap": { - "type": "npm", - "name": "npm:smartwrap", - "data": { - "version": "2.0.2", - "packageName": "smartwrap", - "hash": "sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==" - } - }, - "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:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.8.3", - "packageName": "socks", - "hash": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==" - } - }, - "npm:sort-any": { - "type": "npm", - "name": "npm:sort-any", - "data": { - "version": "1.2.9", - "packageName": "sort-any", - "hash": "sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "2.0.0", - "packageName": "sort-keys", - "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.2.1", - "packageName": "source-map-js", - "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" - } - }, - "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.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support@0.5.21": { - "type": "npm", - "name": "npm:source-map-support@0.5.21", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map@0.5.6": { - "type": "npm", - "name": "npm:source-map@0.5.6", - "data": { - "version": "0.5.6", - "packageName": "source-map", - "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:spawn-wrap": { - "type": "npm", - "name": "npm:spawn-wrap", - "data": { - "version": "2.0.0", - "packageName": "spawn-wrap", - "hash": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==" - } - }, - "npm:spawndamnit": { - "type": "npm", - "name": "npm:spawndamnit", - "data": { - "version": "2.0.0", - "packageName": "spawndamnit", - "hash": "sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.2.0", - "packageName": "spdx-correct", - "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.5.0", - "packageName": "spdx-exceptions", - "hash": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.20", - "packageName": "spdx-license-ids", - "hash": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "3.2.2", - "packageName": "split2", - "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" - } - }, - "npm:split": { - "type": "npm", - "name": "npm:split", - "data": { - "version": "1.0.1", - "packageName": "split", - "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:sprintf-js@1.1.3": { - "type": "npm", - "name": "npm:sprintf-js@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "sprintf-js", - "hash": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.18.0", - "packageName": "sshpk", - "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" - } - }, - "npm:ssri@10.0.6": { - "type": "npm", - "name": "npm:ssri@10.0.6", - "data": { - "version": "10.0.6", - "packageName": "ssri", - "hash": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "9.0.1", - "packageName": "ssri", - "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" - } - }, - "npm:stack-chain": { - "type": "npm", - "name": "npm:stack-chain", - "data": { - "version": "1.3.7", - "packageName": "stack-chain", - "hash": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==" - } - }, - "npm:stack-generator": { - "type": "npm", - "name": "npm:stack-generator", - "data": { - "version": "2.0.10", - "packageName": "stack-generator", - "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" - } - }, - "npm:stack-trace": { - "type": "npm", - "name": "npm:stack-trace", - "data": { - "version": "0.0.10", - "packageName": "stack-trace", - "hash": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" - } - }, - "npm:stack-utils@1.0.5": { - "type": "npm", - "name": "npm:stack-utils@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "stack-utils", - "hash": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:stackframe": { - "type": "npm", - "name": "npm:stackframe", - "data": { - "version": "1.3.4", - "packageName": "stackframe", - "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - } - }, - "npm:stacktrace-gps": { - "type": "npm", - "name": "npm:stacktrace-gps", - "data": { - "version": "3.1.2", - "packageName": "stacktrace-gps", - "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" - } - }, - "npm:stacktrace-js": { - "type": "npm", - "name": "npm:stacktrace-js", - "data": { - "version": "2.0.2", - "packageName": "stacktrace-js", - "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" - } - }, - "npm:stdin": { - "type": "npm", - "name": "npm:stdin", - "data": { - "version": "0.0.1", - "packageName": "stdin", - "hash": "sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ==" - } - }, - "npm:stream-transform": { - "type": "npm", - "name": "npm:stream-transform", - "data": { - "version": "2.1.3", - "packageName": "stream-transform", - "hash": "sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==" - } - }, - "npm:streamroller": { - "type": "npm", - "name": "npm:streamroller", - "data": { - "version": "2.2.3", - "packageName": "streamroller", - "hash": "sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.1", - "packageName": "string-argv", - "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-replace-loader": { - "type": "npm", - "name": "npm:string-replace-loader", - "data": { - "version": "3.1.0", - "packageName": "string-replace-loader", - "hash": "sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "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-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string.prototype.padend": { - "type": "npm", - "name": "npm:string.prototype.padend", - "data": { - "version": "3.1.6", - "packageName": "string.prototype.padend", - "hash": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.9", - "packageName": "string.prototype.trim", - "hash": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.8", - "packageName": "string.prototype.trimend", - "hash": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.8", - "packageName": "string.prototype.trimstart", - "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" - } - }, - "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_decoder@1.3.0": { - "type": "npm", - "name": "npm:string_decoder@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:stringify-object": { - "type": "npm", - "name": "npm:stringify-object", - "data": { - "version": "3.3.0", - "packageName": "stringify-object", - "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "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-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-bom-buf": { - "type": "npm", - "name": "npm:strip-bom-buf", - "data": { - "version": "1.0.0", - "packageName": "strip-bom-buf", - "hash": "sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==" - } - }, - "npm:strip-bom-stream": { - "type": "npm", - "name": "npm:strip-bom-stream", - "data": { - "version": "2.0.0", - "packageName": "strip-bom-stream", - "hash": "sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==" - } - }, - "npm:strip-bom@2.0.0": { - "type": "npm", - "name": "npm:strip-bom@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "strip-bom", - "hash": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==" - } - }, - "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:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-indent": { - "type": "npm", - "name": "npm:strip-indent", - "data": { - "version": "3.0.0", - "packageName": "strip-indent", - "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - } - }, - "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:strnum": { - "type": "npm", - "name": "npm:strnum", - "data": { - "version": "1.0.5", - "packageName": "strnum", - "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - } - }, - "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:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "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@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-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: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:table": { - "type": "npm", - "name": "npm:table", - "data": { - "version": "6.8.1", - "packageName": "table", - "hash": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==" - } - }, - "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:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.1.11", - "packageName": "tar", - "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "1.0.0", - "packageName": "temp-dir", - "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" - } - }, - "npm:temp-dir@2.0.0": { - "type": "npm", - "name": "npm:temp-dir@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "temp-dir", - "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" - } - }, - "npm:tempfile": { - "type": "npm", - "name": "npm:tempfile", - "data": { - "version": "3.0.0", - "packageName": "tempfile", - "hash": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==" - } - }, - "npm:term-size": { - "type": "npm", - "name": "npm:term-size", - "data": { - "version": "2.2.1", - "packageName": "term-size", - "hash": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.10", - "packageName": "terser-webpack-plugin", - "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.34.1", - "packageName": "terser", - "hash": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==" - } - }, - "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": "1.9.0", - "packageName": "text-extensions", - "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" - } - }, - "npm:text-hex": { - "type": "npm", - "name": "npm:text-hex", - "data": { - "version": "1.0.0", - "packageName": "text-hex", - "hash": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - } - }, - "npm:textextensions": { - "type": "npm", - "name": "npm:textextensions", - "data": { - "version": "5.16.0", - "packageName": "textextensions", - "hash": "sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==" - } - }, - "npm:thenify-all": { - "type": "npm", - "name": "npm:thenify-all", - "data": { - "version": "1.6.0", - "packageName": "thenify-all", - "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" - } - }, - "npm:thenify": { - "type": "npm", - "name": "npm:thenify", - "data": { - "version": "3.3.1", - "packageName": "thenify", - "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" - } - }, - "npm:through2@2.0.5": { - "type": "npm", - "name": "npm:through2@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "4.0.2", - "packageName": "through2", - "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:timers-ext": { - "type": "npm", - "name": "npm:timers-ext", - "data": { - "version": "0.1.7", - "packageName": "timers-ext", - "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" - } - }, - "npm:tmp-promise": { - "type": "npm", - "name": "npm:tmp-promise", - "data": { - "version": "3.0.2", - "packageName": "tmp-promise", - "hash": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==" - } - }, - "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: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-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:tough-cookie@2.5.0": { - "type": "npm", - "name": "npm:tough-cookie@2.5.0", - "data": { - "version": "2.5.0", - "packageName": "tough-cookie", - "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.4", - "packageName": "tough-cookie", - "hash": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tr46@3.0.0": { - "type": "npm", - "name": "npm:tr46@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.3.9", - "packageName": "traverse", - "hash": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==" - } - }, - "npm:trim-newlines": { - "type": "npm", - "name": "npm:trim-newlines", - "data": { - "version": "3.0.1", - "packageName": "trim-newlines", - "hash": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" - } - }, - "npm:triple-beam": { - "type": "npm", - "name": "npm:triple-beam", - "data": { - "version": "1.3.0", - "packageName": "triple-beam", - "hash": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.0.5", - "packageName": "ts-jest", - "hash": "sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "8.5.2", - "packageName": "ts-node", - "hash": "sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A==" - } - }, - "npm:tsconfig-paths@3.15.0": { - "type": "npm", - "name": "npm:tsconfig-paths@3.15.0", - "data": { - "version": "3.15.0", - "packageName": "tsconfig-paths", - "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" - } - }, - "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: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:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.7.0", - "packageName": "tslib", - "hash": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" - } - }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, - "npm:tty-table": { - "type": "npm", - "name": "npm:tty-table", - "data": { - "version": "4.2.3", - "packageName": "tty-table", - "hash": "sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "1.1.7", - "packageName": "tuf-js", - "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" - } - }, - "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: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-fest@0.13.1": { - "type": "npm", - "name": "npm:type-fest@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "type-fest", - "hash": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==" - } - }, - "npm:type-fest@0.18.1": { - "type": "npm", - "name": "npm:type-fest@0.18.1", - "data": { - "version": "0.18.1", - "packageName": "type-fest", - "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" - } - }, - "npm:type-fest@0.21.3": { - "type": "npm", - "name": "npm:type-fest@0.21.3", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:type-fest@0.4.1": { - "type": "npm", - "name": "npm:type-fest@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "type-fest", - "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" - } - }, - "npm:type-fest@0.6.0": { - "type": "npm", - "name": "npm:type-fest@0.6.0", - "data": { - "version": "0.6.0", - "packageName": "type-fest", - "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.8.1", - "packageName": "type-fest", - "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } - }, - "npm:type": { - "type": "npm", - "name": "npm:type", - "data": { - "version": "1.2.0", - "packageName": "type", - "hash": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - } - }, - "npm:type@2.7.2": { - "type": "npm", - "name": "npm:type@2.7.2", - "data": { - "version": "2.7.2", - "packageName": "type", - "hash": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.2", - "packageName": "typed-array-buffer", - "hash": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.1", - "packageName": "typed-array-byte-length", - "hash": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.2", - "packageName": "typed-array-byte-offset", - "hash": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.6", - "packageName": "typed-array-length", - "hash": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==" - } - }, - "npm:typedarray-to-buffer": { - "type": "npm", - "name": "npm:typedarray-to-buffer", - "data": { - "version": "3.1.5", - "packageName": "typedarray-to-buffer", - "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" - } - }, - "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": "4.9.4", - "packageName": "typescript", - "hash": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.19.3", - "packageName": "uglify-js", - "hash": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.2", - "packageName": "unbox-primitive", - "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" - } - }, - "npm:unique-filename@2.0.1": { - "type": "npm", - "name": "npm:unique-filename@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "unique-filename", - "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" - } - }, - "npm:unique-slug@3.0.0": { - "type": "npm", - "name": "npm:unique-slug@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unique-slug", - "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" - } - }, - "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: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:unzipper": { - "type": "npm", - "name": "npm:unzipper", - "data": { - "version": "0.10.14", - "packageName": "unzipper", - "hash": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==" - } - }, - "npm:upath": { - "type": "npm", - "name": "npm:upath", - "data": { - "version": "2.0.1", - "packageName": "upath", - "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.1.1", - "packageName": "update-browserslist-db", - "hash": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==" - } - }, - "npm:update-ts-references": { - "type": "npm", - "name": "npm:update-ts-references", - "data": { - "version": "3.2.1", - "packageName": "update-ts-references", - "hash": "sha512-ur9psM1Jvg67Y1ErSIX/zAG5t934ZfZwigB4hZwzmOwn4Cgez3sEoUUvSYvvxj4nLgWdkPKQVDL53MwA+DEndw==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "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:uuid@9.0.1": { - "type": "npm", - "name": "npm:uuid@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "uuid", - "hash": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" - } - }, - "npm:v8-compile-cache@2.3.0": { - "type": "npm", - "name": "npm:v8-compile-cache@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "v8-compile-cache", - "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - } - }, - "npm:v8-compile-cache": { - "type": "npm", - "name": "npm:v8-compile-cache", - "data": { - "version": "2.4.0", - "packageName": "v8-compile-cache", - "hash": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.3.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - } - }, - "npm:validate-npm-package-name@3.0.0": { - "type": "npm", - "name": "npm:validate-npm-package-name@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" - } - }, - "npm:vinyl-file": { - "type": "npm", - "name": "npm:vinyl-file", - "data": { - "version": "3.0.0", - "packageName": "vinyl-file", - "hash": "sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==" - } - }, - "npm:vinyl": { - "type": "npm", - "name": "npm:vinyl", - "data": { - "version": "2.2.1", - "packageName": "vinyl", - "hash": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==" - } - }, - "npm:vscode-jsonrpc": { - "type": "npm", - "name": "npm:vscode-jsonrpc", - "data": { - "version": "8.0.2", - "packageName": "vscode-jsonrpc", - "hash": "sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==" - } - }, - "npm:vscode-languageclient": { - "type": "npm", - "name": "npm:vscode-languageclient", - "data": { - "version": "8.0.2", - "packageName": "vscode-languageclient", - "hash": "sha512-lHlthJtphG9gibGb/y72CKqQUxwPsMXijJVpHEC2bvbFqxmkj9LwQ3aGU9dwjBLqsX1S4KjShYppLvg1UJDF/Q==" - } - }, - "npm:vscode-languageserver-protocol": { - "type": "npm", - "name": "npm:vscode-languageserver-protocol", - "data": { - "version": "3.17.2", - "packageName": "vscode-languageserver-protocol", - "hash": "sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==" - } - }, - "npm:vscode-languageserver-textdocument@1.0.1": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==" - } - }, - "npm:vscode-languageserver-textdocument@1.0.11": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument@1.0.11", - "data": { - "version": "1.0.11", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==" - } - }, - "npm:vscode-languageserver-textdocument": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument", - "data": { - "version": "1.0.12", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==" - } - }, - "npm:vscode-languageserver-textdocument@1.0.7": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument@1.0.7", - "data": { - "version": "1.0.7", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" - } - }, - "npm:vscode-languageserver-types": { - "type": "npm", - "name": "npm:vscode-languageserver-types", - "data": { - "version": "3.17.2", - "packageName": "vscode-languageserver-types", - "hash": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==" - } - }, - "npm:vscode-languageserver": { - "type": "npm", - "name": "npm:vscode-languageserver", - "data": { - "version": "8.0.2", - "packageName": "vscode-languageserver", - "hash": "sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==" - } - }, - "npm:vscode-test": { - "type": "npm", - "name": "npm:vscode-test", - "data": { - "version": "1.6.1", - "packageName": "vscode-test", - "hash": "sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA==" - } - }, - "npm:vscode-uri": { - "type": "npm", - "name": "npm:vscode-uri", - "data": { - "version": "2.1.2", - "packageName": "vscode-uri", - "hash": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==" - } - }, - "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.2", - "packageName": "watchpack", - "hash": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "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: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": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.95.0", - "packageName": "webpack", - "hash": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==" - } - }, - "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:whatwg-url@11.0.0": { - "type": "npm", - "name": "npm:whatwg-url@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "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-module": { - "type": "npm", - "name": "npm:which-module", - "data": { - "version": "2.0.1", - "packageName": "which-module", - "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" - } - }, - "npm:which-pm": { - "type": "npm", - "name": "npm:which-pm", - "data": { - "version": "2.2.0", - "packageName": "which-pm", - "hash": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.15", - "packageName": "which-typed-array", - "hash": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==" - } - }, - "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@2.0.2": { - "type": "npm", - "name": "npm:which@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "3.0.1", - "packageName": "which", - "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" - } - }, - "npm:wide-align": { - "type": "npm", - "name": "npm:wide-align", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - } - }, - "npm:winston-transport": { - "type": "npm", - "name": "npm:winston-transport", - "data": { - "version": "4.3.0", - "packageName": "winston-transport", - "hash": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==" - } - }, - "npm:winston-transport@4.6.0": { - "type": "npm", - "name": "npm:winston-transport@4.6.0", - "data": { - "version": "4.6.0", - "packageName": "winston-transport", - "hash": "sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==" - } - }, - "npm:winston": { - "type": "npm", - "name": "npm:winston", - "data": { - "version": "3.3.3", - "packageName": "winston", - "hash": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.5", - "packageName": "word-wrap", - "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - } - }, - "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: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-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:write-file-atomic@2.4.3": { - "type": "npm", - "name": "npm:write-file-atomic@2.4.3", - "data": { - "version": "2.4.3", - "packageName": "write-file-atomic", - "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" - } - }, - "npm:write-file-atomic@3.0.3": { - "type": "npm", - "name": "npm:write-file-atomic@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "write-file-atomic", - "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" - } - }, - "npm:write-file-atomic@4.0.2": { - "type": "npm", - "name": "npm:write-file-atomic@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "5.0.1", - "packageName": "write-file-atomic", - "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" - } - }, - "npm:write-json-file": { - "type": "npm", - "name": "npm:write-json-file", - "data": { - "version": "3.2.0", - "packageName": "write-json-file", - "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" - } - }, - "npm:write-pkg": { - "type": "npm", - "name": "npm:write-pkg", - "data": { - "version": "4.0.0", - "packageName": "write-pkg", - "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.17.1", - "packageName": "ws", - "hash": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==" - } - }, - "npm:ws@8.18.0": { - "type": "npm", - "name": "npm:ws@8.18.0", - "data": { - "version": "8.18.0", - "packageName": "ws", - "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" - } - }, - "npm:xml-js": { - "type": "npm", - "name": "npm:xml-js", - "data": { - "version": "1.6.11", - "packageName": "xml-js", - "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" - } - }, - "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:xml": { - "type": "npm", - "name": "npm:xml", - "data": { - "version": "1.0.1", - "packageName": "xml", - "hash": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==" - } - }, - "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": "4.0.3", - "packageName": "y18n", - "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - } - }, - "npm:y18n@5.0.8": { - "type": "npm", - "name": "npm:y18n@5.0.8", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "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@3.1.1": { - "type": "npm", - "name": "npm:yallist@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yaml@2.2.2": { - "type": "npm", - "name": "npm:yaml@2.2.2", - "data": { - "version": "2.2.2", - "packageName": "yaml", - "hash": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==" - } - }, - "npm:yargs-parser@18.1.3": { - "type": "npm", - "name": "npm:yargs-parser@18.1.3", - "data": { - "version": "18.1.3", - "packageName": "yargs-parser", - "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "20.2.4", - "packageName": "yargs-parser", - "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" - } - }, - "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@21.1.1": { - "type": "npm", - "name": "npm:yargs-parser@21.1.1", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "15.4.1", - "packageName": "yargs", - "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - } - }, - "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@17.7.2": { - "type": "npm", - "name": "npm:yargs@17.7.2", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "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==" - } - } - }, - "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:@apidevtools/json-schema-ref-parser", - "target": "npm:@jsdevtools/ono", - "type": "static" - }, - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:call-me-maybe", - "type": "static" - }, - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@azure/abort-controller@1.1.0", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/abort-controller", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/core-util", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/abort-controller@1.1.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-util", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:http-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-util", - "target": "npm:@azure/abort-controller@1.1.0", - "type": "static" - }, - { - "source": "npm:@azure/core-util", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/logger", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@opentelemetry/instrumentation", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@babel/code-frame@7.25.7", - "target": "npm:@babel/highlight@7.25.7", - "type": "static" - }, - { - "source": "npm:@babel/code-frame@7.25.7", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame@7.25.7", - "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-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@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/traverse", - "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-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-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier@7.24.7", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@babel/parser", - "target": "npm:@babel/types", - "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-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-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/runtime", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame@7.25.7", - "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@7.25.7", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/template", - "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@11.12.0", - "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:@changesets/apply-release-plan", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/config", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/get-version-range-type", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/git", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:detect-indent", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:lodash.startcase", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:outdent", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@changesets/get-dependents-graph", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@changesets/changelog-git", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/apply-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/assemble-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/changelog-git", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/config", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/get-dependents-graph", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/get-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/git", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/logger", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/pre", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/read", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/write", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@types/is-ci", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@types/semver@6.2.7", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:human-id", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:outdent", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:preferred-pm", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:spawndamnit", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:term-size", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:tty-table", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/get-dependents-graph", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/logger", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@changesets/errors", - "target": "npm:extendable-error", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/assemble-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/config", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/pre", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/read", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:is-subdir", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:spawndamnit", - "type": "static" - }, - { - "source": "npm:@changesets/logger", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/parse", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/parse", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/git", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/logger", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/parse", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:p-filter", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:human-id", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@chevrotain/gast", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/gast", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/format", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/lint", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/load", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/read", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:get-stdin", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:resolve-global", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:@commitlint/config-conventional", - "target": "npm:conventional-changelog-conventionalcommits", - "type": "static" - }, - { - "source": "npm:@commitlint/config-validator", - "target": "npm:@commitlint/types@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/config-validator", - "target": "npm:ajv@8.17.1", - "type": "static" - }, - { - "source": "npm:@commitlint/ensure", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/ensure", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/format", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/format", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@commitlint/is-ignored", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/is-ignored", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/is-ignored", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/parse", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/rules", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:@commitlint/execute-rule", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:@commitlint/resolve-extends", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/config-validator", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/execute-rule@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/resolve-extends@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/types@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:cosmiconfig@9.0.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:cosmiconfig-typescript-loader", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:@commitlint/parse", - "target": "npm:conventional-changelog-angular@5.0.13", - "type": "static" - }, - { - "source": "npm:@commitlint/parse", - "target": "npm:conventional-commits-parser@3.2.4", - "type": "static" - }, - { - "source": "npm:@commitlint/read", - "target": "npm:@commitlint/top-level", - "type": "static" - }, - { - "source": "npm:@commitlint/read", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/read", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:resolve-global", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:@commitlint/config-validator", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:@commitlint/types@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:global-directory", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:import-meta-resolve", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:lodash.mergewith", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/ensure", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/message", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/to-lines", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/top-level", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:@commitlint/types@19.5.0", - "target": "npm:@types/conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:@commitlint/types@19.5.0", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:@dabh/diagnostics", - "target": "npm:colorspace", - "type": "static" - }, - { - "source": "npm:@dabh/diagnostics", - "target": "npm:enabled", - "type": "static" - }, - { - "source": "npm:@dabh/diagnostics", - "target": "npm:kuler", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:@emnapi/wasi-threads", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emnapi/runtime", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emnapi/wasi-threads", - "target": "npm:tslib", - "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", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@formatjs/ts-transformer", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/loud-rejection", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/node@14.18.63", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@vue/compiler-sfc", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:intl-messageformat-parser", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:loud-rejection", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@formatjs/ecma402-abstract", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:intl-messageformat-parser", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "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@3.14.1", - "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@4.1.2", - "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@4.1.2", - "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@29.7.0", - "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@29.7.0", - "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-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot@29.7.0", - "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@4.1.2", - "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@6.0.3", - "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@4.1.2", - "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@4.0.2", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-reports@1.1.2", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/yargs@15.0.19", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:chalk@3.0.0", - "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@4.1.2", - "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:@kwsites/file-exists", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@octokit/plugin-enterprise-rest", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:byte-size", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:cmd-shim", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:conventional-changelog-core", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:conventional-recommended-bump", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:libnpmpublish", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:node-fetch@2.6.7", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:nx@16.10.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-map-series", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-queue", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:read-cmd-shim", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:rimraf@4.4.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:uuid@9.0.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:write-pkg", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:@types/node@12.20.55", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:@changesets/types@4.1.0", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:@manypkg/find-root", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:read-yaml-file", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@tybys/wasm-util", - "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@2.1.2", - "target": "npm:@gar/promisify", - "type": "static" - }, - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:semver", - "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", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which", - "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", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nrwl/tao@16.10.0", - "target": "npm:nx@16.10.0", - "type": "static" - }, - { - "source": "npm:@nrwl/tao@16.10.0", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "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@2.3.6", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:nx@16.10.0", - "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:@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:is-plain-object@5.0.0", - "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/tsconfig", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-request-log", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/types@10.0.0", - "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/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:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - }, - { - "source": "npm:@octokit/types@10.0.0", - "target": "npm:@octokit/openapi-types", - "type": "static" - }, - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types", - "type": "static" - }, - { - "source": "npm:@opentelemetry/api-logs", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/core", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/core", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:@opentelemetry/api-logs", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:@types/shimmer", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:import-in-the-middle", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:require-in-the-middle", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:shimmer", - "type": "static" - }, - { - "source": "npm:@opentelemetry/resources", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/resources", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:@opentelemetry/resources", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/resources", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/semantic-conventions", - "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:@prettier/plugin-xml", - "target": "npm:@xml-tools/parser@1.0.11", - "type": "static" - }, - { - "source": "npm:@prettier/plugin-xml", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@sap-ux/edmx-parser", - "target": "npm:xml-js", - "type": "static" - }, - { - "source": "npm:@sap-ux/i18n", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@sap-ux/i18n", - "target": "npm:vscode-languageserver-textdocument@1.0.7", - "type": "static" - }, - { - "source": "npm:@sap-ux/i18n", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:@sap-ux/i18n", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:@sap-ux/ui5-config", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:fast-xml-parser", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:findit2", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:mem-fs", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:mem-fs-editor", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@sap-ux/ui5-config", - "target": "npm:@sap-ux/yaml", - "type": "static" - }, - { - "source": "npm:@sap-ux/ui5-config", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@sap-ux/ui5-config", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@sap-ux/yaml", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@sap-ux/yaml", - "target": "npm:yaml@2.2.2", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:axios@1.7.4", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "target": "npm:esm", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "target": "npm:lodash@4.17.20", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "target": "npm:matomo-tracker", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx", - "target": "npm:@sap/bas-sdk", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx", - "target": "npm:applicationinsights", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx", - "target": "npm:lodash", - "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:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@tybys/wasm-util", - "target": "npm:tslib", - "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/conventional-commits-parser", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/fs-extra", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/is-ci", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports@1.1.2", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports@1.1.2", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/jest-specific-snapshot", - "target": "npm:@types/jest", - "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/klaw-sync", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/loud-rejection", - "target": "npm:loud-rejection", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@types/rimraf", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:@types/rimraf", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/sinon-chai", - "target": "npm:@types/chai", - "type": "static" - }, - { - "source": "npm:@types/sinon-chai", - "target": "npm:@types/sinon", - "type": "static" - }, - { - "source": "npm:@types/sinon", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:@types/yargs@15.0.19", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:regexpp", - "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/eslint-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils@3.0.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager@4.14.0", - "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/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@4.14.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@4.14.0", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys@4.33.0", - "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:lodash", - "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/typescript-estree", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:@typescript-eslint/visitor-keys@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:typescript", - "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:@typescript-eslint/visitor-keys@4.33.0", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@4.33.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:@vscode-logging/types", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:fast-safe-stringify", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:lodash@4.17.20", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:stacktrace-js", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:streamroller", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:winston", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:winston-transport", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:entities@4.5.0", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-ssr", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/shared", - "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:@xml-tools/ast-position", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "npm:@xml-tools/ast", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "npm:@xml-tools/ast", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "npm:@xml-tools/ast", - "target": "npm:lodash@4.17.15", - "type": "static" - }, - { - "source": "npm:@xml-tools/common", - "target": "npm:lodash@4.17.15", - "type": "static" - }, - { - "source": "npm:@xml-tools/content-assist", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "npm:@xml-tools/content-assist", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "npm:@xml-tools/content-assist", - "target": "npm:lodash@4.17.15", - "type": "static" - }, - { - "source": "npm:@xml-tools/parser@1.0.11", - "target": "npm:chevrotain@7.1.1", - "type": "static" - }, - { - "source": "npm:@xml-tools/parser", - "target": "npm:chevrotain", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@zkochan/js-yaml@0.0.6", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:acorn-import-attributes", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-walk", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "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-keywords", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "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", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:json-schema-traverse@1.0.0", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.21.3", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:append-transform", - "target": "npm:default-require-extensions", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/core-rest-pipeline", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/core-util", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@microsoft/applicationinsights-web-snippet", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/sdk-trace-base", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:cls-hooked", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:continuation-local-storage", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:diagnostic-channel", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:diagnostic-channel-publishers", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "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:es-object-atoms", - "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.findlastindex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-shim-unscopables", - "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: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:es-errors", - "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:async-hook-jl", - "target": "npm:stack-chain", - "type": "static" - }, - { - "source": "npm:async-listener", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:async-listener", - "target": "npm:shimmer", - "type": "static" - }, - { - "source": "npm:available-typed-arrays", - "target": "npm:possible-typed-array-names", - "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", - "type": "static" - }, - { - "source": "npm:axios@1.7.4", - "target": "npm:follow-redirects@1.15.9", - "type": "static" - }, - { - "source": "npm:axios@1.7.4", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.7.4", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:axios@1.7.7", - "target": "npm:follow-redirects@1.15.9", - "type": "static" - }, - { - "source": "npm:axios@1.7.7", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.7.7", - "target": "npm:proxy-from-env", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "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: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-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-class-static-block", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-attributes", - "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-private-property-in-object", - "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:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:better-path-resolve", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:binary", - "target": "npm:buffers", - "type": "static" - }, - { - "source": "npm:binary", - "target": "npm:chainsaw", - "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", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:breakword", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:browser-resolve", - "target": "npm:resolve@1.1.7", - "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@16.1.3", - "target": "npm:@npmcli/fs@2.1.2", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:unique-filename@2.0.1", - "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.4.5", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass@7.1.2", - "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@10.0.6", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:hasha", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:package-hash", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:write-file-atomic@3.0.3", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-errors", - "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:camelcase-keys", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:map-obj", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:assertion-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:check-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:deep-eql", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:get-func-name", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:pathval", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:chainsaw", - "target": "npm:traverse", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:check-error", - "target": "npm:get-func-name", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/cst-dts-gen", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/utils", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:regexp-to-ast", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:regexp-to-ast", - "type": "static" - }, - { - "source": "npm:chevrotain@7.1.1", - "target": "npm:regexp-to-ast", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:memoizee", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:timers-ext", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:wrap-ansi@6.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", - "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", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:cls-hooked", - "target": "npm:async-hook-jl", - "type": "static" - }, - { - "source": "npm:cls-hooked", - "target": "npm:emitter-listener", - "type": "static" - }, - { - "source": "npm:cls-hooked", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - }, - { - "source": "npm:colorspace", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:colorspace", - "target": "npm:text-hex", - "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:comment-json", - "target": "npm:array-timsort", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:has-own-prop", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:cz-conventional-changelog", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:detect-indent", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:find-node-modules", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:find-root", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:glob@7.2.3", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:is-utf8", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:minimist@1.2.7", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:array-ify", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:dot-prop", - "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:continuation-local-storage", - "target": "npm:async-listener", - "type": "static" - }, - { - "source": "npm:continuation-local-storage", - "target": "npm:emitter-listener", - "type": "static" - }, - { - "source": "npm:conventional-changelog-angular@5.0.13", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-angular@5.0.13", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-angular", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-atom", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:conventional-changelog", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:tempfile", - "type": "static" - }, - { - "source": "npm:conventional-changelog-codemirror", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:conventional-changelog-writer@5.0.1", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:conventional-commits-parser@3.2.4", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:get-pkg-repo", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:git-remote-origin-url", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:git-semver-tags@4.1.1", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-changelog-writer", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:get-pkg-repo", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-raw-commits@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-remote-origin-url", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:conventional-changelog-ember", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-eslint", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-express", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-jquery", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-jshint", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-jshint", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:conventional-commits-filter@2.0.7", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:split", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:dateformat", - "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@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:split", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-angular@5.0.13", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-atom", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-codemirror", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-conventionalcommits", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-core@4.2.4", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-ember", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-eslint", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-express", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-jquery", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-jshint", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-preset-loader", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter@2.0.7", - "target": "npm:lodash.ismatch", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter@2.0.7", - "target": "npm:modify-values", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter", - "target": "npm:lodash.ismatch", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter", - "target": "npm:modify-values", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-changelog-preset-loader@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-raw-commits@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:cosmiconfig@9.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:typescript", - "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:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "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:typescript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:lcov-parse", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:log-driver", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk@4.1.2", - "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@29.7.0", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:cross-env", - "target": "npm:cross-spawn", - "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", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "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", - "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", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command@2.0.0", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:csv-generate", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:csv-parse", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:csv-stringify", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:stream-transform", - "type": "static" - }, - { - "source": "npm:currently-unhandled", - "target": "npm:array-find-index", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:commitizen", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:conventional-commit-types", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:lodash.map", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:longest", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:@commitlint/load@19.5.0", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:type", - "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@11.0.0", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:debug@4.3.4", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:decamelize-keys", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:decamelize-keys", - "target": "npm:map-obj@1.0.1", - "type": "static" - }, - { - "source": "npm:deep-eql", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:deep-equal-in-any-order", - "target": "npm:lodash.mapvalues", - "type": "static" - }, - { - "source": "npm:deep-equal-in-any-order", - "target": "npm:sort-any", - "type": "static" - }, - { - "source": "npm:default-require-extensions", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone@1.0.4", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "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:diagnostic-channel-publishers", - "target": "npm:diagnostic-channel", - "type": "static" - }, - { - "source": "npm:diagnostic-channel", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:doctrine@2.1.0", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:dot-prop", - "target": "npm:is-obj@2.0.0", - "type": "static" - }, - { - "source": "npm:dotenv-expand", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:duplexer2", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - }, - { - "source": "npm:emitter-listener", - "target": "npm:shimmer", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite@0.6.3", - "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@2.3.6", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:error-stack-parser", - "target": "npm:stackframe", - "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:data-view-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-object-atoms", - "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-data-view", - "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-define-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-object-atoms", - "target": "npm:es-errors", - "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-shim-unscopables", - "target": "npm:hasown@2.0.0", - "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:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-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@5.3.0", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "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@2.15.1", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:eslint-plugin-import", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:eslint-import-resolver-typescript", - "type": "static" - }, - { - "source": "npm:eslint-plugin-eslint-comments", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint-plugin-eslint-comments", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-eslint-comments", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:@rtsao/scc", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.findlastindex", - "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", - "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:hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module@2.15.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.groupby", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.15.0", - "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-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:eslint-utils@3.0.0", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-utils@3.0.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk@4.1.2", - "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:enquirer", - "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:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore@4.0.6", - "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@3.14.1", - "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", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:semver", - "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:table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:v8-compile-cache", - "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@1.3.0", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse@5.3.0", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse@5.3.0", - "type": "static" - }, - { - "source": "npm:event-emitter", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:event-emitter", - "target": "npm:es5-ext", - "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", - "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:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals@2.1.0", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream@2.0.1", - "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: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@2.1.0", - "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:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-matcher-utils@25.5.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-message-util@25.5.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-regex-util@25.2.6", - "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:ext", - "target": "npm:type@2.7.2", - "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: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:fast-xml-parser", - "target": "npm:strnum", - "type": "static" - }, - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - }, - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:fill-keys", - "target": "npm:is-object", - "type": "static" - }, - { - "source": "npm:fill-keys", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "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-node-modules", - "target": "npm:findup-sync", - "type": "static" - }, - { - "source": "npm:find-node-modules", - "target": "npm:merge", - "type": "static" - }, - { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "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-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:find-yarn-workspace-root2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root2", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:detect-file", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:first-chunk-stream", - "target": "npm:readable-stream@2.3.8", - "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", - "type": "static" - }, - { - "source": "npm:foreground-child@3.3.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child@3.3.0", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:mime-types", - "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: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:front-matter", - "target": "npm:js-yaml@3.14.1", - "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-extra@11.2.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "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:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass@7.1.2", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:mkdirp@0.5.6", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:rimraf@2.7.1", - "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:es-errors", - "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@2.0.0", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:@hutson/parse-repository-url", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:hosted-git-info@4.1.0", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:get-tsconfig", - "target": "npm:resolve-pkg-maps", - "type": "static" - }, - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:dargs", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:git-raw-commits@3.0.0", - "target": "npm:dargs", - "type": "static" - }, - { - "source": "npm:git-raw-commits@3.0.0", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-raw-commits@3.0.0", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:git-remote-origin-url", - "target": "npm:gitconfiglocal", - "type": "static" - }, - { - "source": "npm:git-remote-origin-url", - "target": "npm:pify@2.3.0", - "type": "static" - }, - { - "source": "npm:git-semver-tags@4.1.1", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-semver-tags@4.1.1", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:git-semver-tags", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-semver-tags", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:git-up", - "target": "npm:is-ssh", - "type": "static" - }, - { - "source": "npm:git-up", - "target": "npm:parse-url", - "type": "static" - }, - { - "source": "npm:git-url-parse", - "target": "npm:git-up", - "type": "static" - }, - { - "source": "npm:gitconfiglocal", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-promise", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:glob-promise", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:foreground-child@3.3.0", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minipass@7.1.2", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:path-scurry", - "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: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", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "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", - "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:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minimatch@8.0.4", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minipass@4.2.8", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:global-directory", - "target": "npm:ini@4.1.1", - "type": "static" - }, - { - "source": "npm:global-dirs", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:global-prefix", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:globals", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:gopd", - "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:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map", - "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", - "type": "static" - }, - { - "source": "npm:har-validator", - "target": "npm:har-schema", - "type": "static" - }, - { - "source": "npm:has-property-descriptors", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:hasha", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:hasha", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:hasown@2.0.0", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:hosted-git-info@4.1.0", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:hosted-git-info@6.1.1", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "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-agent@5.0.0", - "target": "npm:@tootallnate/once@2.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@5.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@5.0.0", - "target": "npm:debug", - "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:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug@4.3.4", - "type": "static" - }, - { - "source": "npm:humanize-ms", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:i18next", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:ignore-walk@6.0.5", - "target": "npm:minimatch@9.0.3", - "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-in-the-middle", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:import-in-the-middle", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:import-in-the-middle", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:import-in-the-middle", - "target": "npm:module-details-from-path", - "type": "static" - }, - { - "source": "npm:import-local@3.1.0", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local@3.1.0", - "target": "npm:resolve-cwd", - "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:init-package-json", - "target": "npm:npm-package-arg@10.1.0", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:promzard", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:chalk@4.1.2", - "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@5.4.1", - "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:internal-slot", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:intl-messageformat-parser", - "target": "npm:@formatjs/ecma402-abstract", - "type": "static" - }, - { - "source": "npm:intl-messageformat-parser", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ip-address", - "target": "npm:jsbn@1.1.0", - "type": "static" - }, - { - "source": "npm:ip-address", - "target": "npm:sprintf-js@1.1.3", - "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-bigint", - "target": "npm:has-bigints", - "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@2.0.0", - "type": "static" - }, - { - "source": "npm:is-core-module@2.15.1", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-data-view", - "target": "npm:is-typed-array", - "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-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-ssh", - "target": "npm:protocols", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-subdir", - "target": "npm:better-path-resolve", - "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:istanbul-lib-hook", - "target": "npm:append-transform", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "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.1", - "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:istanbul-lib-instrument@6.0.3", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:archy", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:uuid", - "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@7.2.0", - "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", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit@3.1.0", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.3", - "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@29.7.0", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit@3.1.0", - "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@4.1.2", - "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@29.7.0", - "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@17.7.2", - "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:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "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-config", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-environment-node@29.7.0", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:diff-sequences@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:pretty-format@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "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@4.1.2", - "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-environment-node@29.7.0", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-esm-transformer", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-esm-transformer", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:jest-extended", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-extended", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-extended", - "target": "npm:jest-get-type", - "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-junit", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:jest-junit", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:jest-junit", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:jest-junit", - "target": "npm:xml", - "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@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:jest-diff@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:pretty-format@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk@4.1.2", - "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@25.5.0", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:stack-utils@1.0.5", - "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@2.0.3", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk@4.1.2", - "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@25.5.1", - "type": "static" - }, - { - "source": "npm:jest-pnp-resolver", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot@29.7.0", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:browser-resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:read-pkg-up@7.0.1", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:realpath-native", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "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", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "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@4.1.2", - "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@29.7.0", - "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@3.1.0", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "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@4.1.2", - "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@29.7.0", - "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/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@types/prettier@1.19.1", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-resolve@25.5.1", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:jest-sonar", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:jest-sonar", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:jest-specific-snapshot", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-specific-snapshot", - "target": "npm:jest-snapshot", - "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@4.1.2", - "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@4.1.2", - "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@4.1.2", - "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@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: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: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:js-yaml@3.14.1", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn@8.12.1", - "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@5.0.0", - "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", - "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@11.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws@8.18.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:json-schema-ref-parser", - "target": "npm:@apidevtools/json-schema-ref-parser", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:@types/prettier", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:cli-color", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:glob-promise", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:json-schema-ref-parser", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:mz", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:stdin", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:jsonify", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:jsonfile@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "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:keyv", - "target": "npm:json-buffer", - "type": "static" - }, - { - "source": "npm:klaw-sync", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@lerna/create", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/plugin-enterprise-rest", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:byte-size", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-core", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-recommended-bump", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:import-local@3.1.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmaccess", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmpublish", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:node-fetch@2.6.7", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:nx@16.10.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map-series", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-pipe", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-queue", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-waterfall", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:rimraf@4.4.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:uuid@9.0.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-pkg", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:libnpmaccess", - "target": "npm:npm-package-arg@10.1.0", - "type": "static" - }, - { - "source": "npm:libnpmaccess", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-package-arg@10.1.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:ssri@10.0.6", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:log-symbols", - "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:please-upgrade-node", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:stringify-object", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:enquirer", - "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:load-json-file@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:strip-bom@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", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:type-fest@0.6.0", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:strip-bom@3.0.0", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "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:locate-path", - "target": "npm:p-locate", - "type": "static" - }, - { - "source": "npm:locate-path@6.0.0", - "target": "npm:p-locate@5.0.0", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "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:logform", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:@types/triple-beam", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:fecha", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:loud-rejection", - "target": "npm:currently-unhandled", - "type": "static" - }, - { - "source": "npm:loud-rejection", - "target": "npm:signal-exit", - "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:lru-cache@5.1.1", - "target": "npm:yallist@3.1.1", - "type": "static" - }, - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:lru-queue", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "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:make-dir", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:cacache@16.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-fetch@2.1.2", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:ssri", - "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@5.0.0", - "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@10.0.6", - "type": "static" - }, - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:binaryextensions", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:mem-fs", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:textextensions", - "type": "static" - }, - { - "source": "npm:mem-fs", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:mem-fs", - "target": "npm:vinyl-file", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:event-emitter", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:lru-queue", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:timers-ext", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:@types/minimist", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:camelcase-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:decamelize-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:hard-rejection", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:minimist-options", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:normalize-package-data@2.5.0", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:read-pkg-up@7.0.1", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:trim-newlines", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:type-fest@0.13.1", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:@types/minimist", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:camelcase-keys", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:decamelize-keys", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:hard-rejection", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:minimist-options", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:read-pkg-up@7.0.1", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:trim-newlines", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:type-fest@0.18.1", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:yargs-parser@20.2.9", - "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:minimatch@3.0.5", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:minimatch@8.0.4", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:arrify@1.0.1", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass@7.1.2", - "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-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:mkdirp@0.5.6", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:@types/minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-differ", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:thenify-all", - "type": "static" - }, - { - "source": "npm:node-fetch@2.6.7", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url", - "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", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen@10.2.1", - "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@2.0.2", - "type": "static" - }, - { - "source": "npm:node-preload", - "target": "npm:process-on-spawn", - "type": "static" - }, - { - "source": "npm:nopt", - "target": "npm:abbrev", - "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:normalize-package-data", - "target": "npm:hosted-git-info@4.1.0", - "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:normalize-package-data@5.0.0", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.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-bundled@3.0.1", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name@3.0.0", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-packlist@7.0.4", - "target": "npm:ignore-walk@6.0.5", - "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@3.0.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg@10.1.0", - "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@10.1.0", - "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", - "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", - "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:npm-run-path", - "target": "npm:path-key@3.1.1", - "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:nx@16.10.0", - "target": "npm:@nrwl/tao@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@zkochan/js-yaml@0.0.6", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:dotenv@16.3.2", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:dotenv-expand@10.0.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:enquirer@2.3.6", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:v8-compile-cache@2.3.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-darwin-arm64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-darwin-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-freebsd-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-x64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-win32-x64-msvc@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@napi-rs/wasm-runtime", - "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.7.7", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "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@2.3.6", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:front-matter", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "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@9.0.3", - "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:ora", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.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:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser@21.1.1", - "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:nyc", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:caching-transform", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-hook", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-processinfo", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:node-preload", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:process-on-spawn", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:spawn-wrap", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:yargs", - "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.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.fromentries", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:es-abstract", - "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-object-atoms", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:one-time", - "target": "npm:fn.name", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "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:ora@5.4.1", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:p-filter", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:p-limit@1.3.0", - "target": "npm:p-try@1.0.0", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit@3.1.0", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-locate@2.0.0", - "target": "npm:p-limit@1.3.0", - "type": "static" - }, - { - "source": "npm:p-locate", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit@3.1.0", - "type": "static" - }, - { - "source": "npm:p-map@3.0.0", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-queue", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:p-queue", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:p-timeout", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:p-waterfall", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:hasha", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:lodash.flattendeep", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:release-zalgo", - "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@10.1.0", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist@7.0.4", - "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@10.0.6", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:parent-module", - "target": "npm:callsites", - "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: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@2.3.1", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - }, - { - "source": "npm:parse-path", - "target": "npm:protocols", - "type": "static" - }, - { - "source": "npm:parse-url", - "target": "npm:parse-path", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities@4.5.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@7.1.2", - "type": "static" - }, - { - "source": "npm:path-type@3.0.0", - "target": "npm:pify@3.0.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: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:preferred-pm", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:preferred-pm", - "target": "npm:find-yarn-workspace-root2", - "type": "static" - }, - { - "source": "npm:preferred-pm", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:preferred-pm", - "target": "npm:which-pm", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:react-is@16.13.1", - "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:process-on-spawn", - "target": "npm:fromentries", - "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@3.0.3", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:promzard", - "target": "npm:read@3.0.1", - "type": "static" - }, - { - "source": "npm:proxyquire", - "target": "npm:fill-keys", - "type": "static" - }, - { - "source": "npm:proxyquire", - "target": "npm:module-not-found-error", - "type": "static" - }, - { - "source": "npm:proxyquire", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:glob@10.4.5", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:read-pkg-up@7.0.1", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:read-pkg-up@7.0.1", - "target": "npm:read-pkg@5.2.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up@7.0.1", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:load-json-file@4.0.0", - "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@5.2.0", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:normalize-package-data@2.5.0", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:type-fest@0.6.0", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:strip-bom@3.0.0", - "type": "static" - }, - { - "source": "npm:read", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:read@3.0.1", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.3.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:rechoir", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:strip-indent", - "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:es-errors", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:release-zalgo", - "target": "npm:es6-error", - "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@2.3.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:har-validator", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:http-signature", - "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", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tough-cookie@2.5.0", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:require-in-the-middle", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:require-in-the-middle", - "target": "npm:module-details-from-path", - "type": "static" - }, - { - "source": "npm:require-in-the-middle", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - }, - { - "source": "npm:resolve-global", - "target": "npm:global-dirs", - "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:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@4.4.1", - "target": "npm:glob@9.3.5", - "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", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "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@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "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:es-errors", - "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:shallow-clone", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - }, - { - "source": "npm:shebang-command@2.0.0", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:shelljs", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:shelljs", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:shelljs", - "target": "npm:rechoir", - "type": "static" - }, - { - "source": "npm:shx", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:shx", - "target": "npm:shelljs", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "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:sigstore", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:simple-git", - "target": "npm:@kwsites/file-exists", - "type": "static" - }, - { - "source": "npm:simple-git", - "target": "npm:@kwsites/promise-deferred", - "type": "static" - }, - { - "source": "npm:simple-git", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.2", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@4.3.0", - "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: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", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:breakword", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:grapheme-splitter", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:yargs", - "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:socks", - "target": "npm:ip-address", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:sort-any", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj", - "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", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.21", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.21", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:spawndamnit", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:spawndamnit", - "target": "npm:signal-exit", - "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:split2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:split", - "target": "npm:through", - "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@10.0.6", - "target": "npm:minipass@7.1.2", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:stack-generator", - "target": "npm:stackframe", - "type": "static" - }, - { - "source": "npm:stack-utils@1.0.5", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - }, - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - }, - { - "source": "npm:stacktrace-gps", - "target": "npm:source-map@0.5.6", - "type": "static" - }, - { - "source": "npm:stacktrace-gps", - "target": "npm:stackframe", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stack-generator", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stacktrace-gps", - "type": "static" - }, - { - "source": "npm:stream-transform", - "target": "npm:mixme", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:fs-extra@8.1.0", - "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-replace-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:string-replace-loader", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:string-replace-loader", - "target": "npm:webpack", - "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-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: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.padend", - "target": "npm:es-object-atoms", - "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.trim", - "target": "npm:es-object-atoms", - "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-object-atoms", - "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-object-atoms", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:string_decoder@1.3.0", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:get-own-enumerable-property-symbols", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-regexp", - "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:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.1.0", - "type": "static" - }, - { - "source": "npm:strip-bom-buf", - "target": "npm:is-utf8", - "type": "static" - }, - { - "source": "npm:strip-bom-stream", - "target": "npm:first-chunk-stream", - "type": "static" - }, - { - "source": "npm:strip-bom-stream", - "target": "npm:strip-bom@2.0.0", - "type": "static" - }, - { - "source": "npm:strip-bom@2.0.0", - "target": "npm:is-utf8", - "type": "static" - }, - { - "source": "npm:strip-indent", - "target": "npm:min-indent", - "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:supports-color", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:ajv@8.17.1", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:lodash.truncate", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:slice-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:strip-ansi", - "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", - "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@3.3.6", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tempfile", - "target": "npm:temp-dir@2.0.0", - "type": "static" - }, - { - "source": "npm:tempfile", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:esbuild", - "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", - "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:terser-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support@0.5.21", - "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:thenify-all", - "target": "npm:thenify", - "type": "static" - }, - { - "source": "npm:thenify", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:timers-ext", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:timers-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:tmp-promise", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:tough-cookie@2.5.0", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie@2.5.0", - "target": "npm:punycode", - "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@3.0.0", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest", - "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:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "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:source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:strip-bom@3.0.0", - "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:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:csv", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:smartwrap", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:yargs@17.7.2", - "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:typed-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:es-errors", - "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:gopd", - "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:gopd", - "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:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:possible-typed-array-names", - "type": "static" - }, - { - "source": "npm:typedarray-to-buffer", - "target": "npm:is-typedarray", - "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:unique-filename@2.0.1", - "target": "npm:unique-slug@3.0.0", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-slug@3.0.0", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:binary", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:buffer-indexof-polyfill", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:duplexer2", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:fstream", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:listenercount", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:setimmediate", - "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:update-ts-references", - "target": "npm:@formatjs/cli", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:comment-json", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:mkdirp", - "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@3.0.0", - "target": "npm:builtins@1.0.3", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "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:vinyl-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:pify@2.3.0", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:strip-bom-buf", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:strip-bom-stream", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-buffer", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-stats", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:cloneable-readable", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vscode-languageclient", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:vscode-languageclient", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:vscode-languageclient", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - }, - { - "source": "npm:vscode-languageserver-protocol", - "target": "npm:vscode-jsonrpc", - "type": "static" - }, - { - "source": "npm:vscode-languageserver-protocol", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "npm:vscode-languageserver", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:unzipper", - "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:wcwidth", - "target": "npm:defaults", - "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@8.12.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-attributes", - "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", - "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@2.3.1", - "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", - "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:whatwg-encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@11.0.0", - "target": "npm:tr46@3.0.0", - "type": "static" - }, - { - "source": "npm:whatwg-url@11.0.0", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions@3.0.1", - "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-pm", - "target": "npm:load-yaml-file", - "type": "static" - }, - { - "source": "npm:which-pm", - "target": "npm:path-exists", - "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@1.3.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which@2.0.2", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:winston-transport", - "target": "npm:logform", - "type": "static" - }, - { - "source": "npm:winston-transport", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:winston-transport", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:winston-transport@4.6.0", - "target": "npm:logform", - "type": "static" - }, - { - "source": "npm:winston-transport@4.6.0", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:winston-transport@4.6.0", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:@dabh/diagnostics", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:logform", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:one-time", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:stack-trace", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:winston-transport@4.6.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: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: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:write-file-atomic@2.4.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic@2.4.3", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@2.4.3", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:typedarray-to-buffer", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:detect-indent@5.0.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:write-file-atomic@2.4.3", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:type-fest@0.4.1", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:write-json-file", - "type": "static" - }, - { - "source": "npm:xml-js", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui@6.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:find-up", - "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:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser@18.1.3", - "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@5.0.8", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:y18n@5.0.8", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ] -} diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json deleted file mode 100644 index f269fc23c..000000000 --- a/.nx/workspace-data/project-graph.json +++ /dev/null @@ -1,35992 +0,0 @@ -{ - "nodes": { - "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext": { - "name": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", - "type": "lib", - "data": { - "root": "packages/vscode-ui5-language-assistant-bas-ext", - "sourceRoot": "packages/vscode-ui5-language-assistant-bas-ext", - "name": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", - "tags": ["npm:public"], - "metadata": { - "targetGroups": { - "NPM Scripts": ["ci", "clean"] - }, - "description": "A wrapper module for BAS simple extension around Language Support For SAPUI5" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "node ./scripts/copy", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./dist ./lib ./coverage ./nyc_output *.vsix NOTICE LICENSE", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "executor": "@nx/js:release-publish", - "dependsOn": ["^nx-release-publish"], - "options": {}, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "vscode-ui5-language-assistant": { - "name": "vscode-ui5-language-assistant", - "type": "lib", - "data": { - "root": "packages/vscode-ui5-language-assistant", - "sourceRoot": "packages/vscode-ui5-language-assistant", - "name": "vscode-ui5-language-assistant", - "tags": ["npm:private", "npm:UI5", "npm:OpenUI5", "npm:SAPUI5"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test:integration", - "test:unit", - "coverage:unit", - "bundle", - "package", - "update:schema" - ] - }, - "description": "Language Support For SAPUI5" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage:* bundle package", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./dist ./lib ./coverage *.vsix NOTICE LICENSE", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test:integration": { - "executor": "nx:run-script", - "options": { - "script": "test:integration" - }, - "metadata": { - "scriptContent": "node lib/test/run-integration-tests.js", - "runCommand": "pnpm run test:integration" - }, - "configurations": {}, - "parallelism": true - }, - "test:unit": { - "executor": "nx:run-script", - "options": { - "script": "test:unit" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test:unit" - }, - "configurations": {}, - "parallelism": true - }, - "coverage:unit": { - "executor": "nx:run-script", - "options": { - "script": "coverage:unit" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage:unit" - }, - "configurations": {}, - "parallelism": true - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "metadata": { - "scriptContent": "node esbuild.js", - "runCommand": "pnpm run bundle" - }, - "configurations": {}, - "parallelism": true - }, - "package": { - "executor": "nx:run-script", - "options": { - "script": "package" - }, - "metadata": { - "scriptContent": "node ./scripts/package-vsix", - "runCommand": "pnpm run package" - }, - "configurations": {}, - "parallelism": true - }, - "update:schema": { - "executor": "nx:run-script", - "options": { - "script": "update:schema" - }, - "metadata": { - "scriptContent": "ts-node --project tsconfig.cli.json scripts/manifest/run-update.ts", - "runCommand": "pnpm run update:schema" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/semantic-model-types": { - "name": "@ui5-language-assistant/semantic-model-types", - "type": "lib", - "data": { - "root": "packages/semantic-model-types", - "sourceRoot": "packages/semantic-model-types", - "name": "@ui5-language-assistant/semantic-model-types", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "UI5 Semantic model type definitions" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "echo \"nothing to clean\"", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "echo nothing to test", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "echo nothing to test", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/xml-views-completion": { - "name": "@ui5-language-assistant/xml-views-completion", - "type": "lib", - "data": { - "root": "packages/xml-views-completion", - "sourceRoot": "packages/xml-views-completion", - "name": "@ui5-language-assistant/xml-views-completion", - "tags": [ - "npm:private", - "npm:xml", - "npm:ui5", - "npm:openui5", - "npm:content-assist" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "Auto-Complete Logic for UI5 XML-Views" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/xml-views-definition": { - "name": "@ui5-language-assistant/xml-views-definition", - "type": "lib", - "data": { - "root": "packages/xml-views-definition", - "sourceRoot": "packages/xml-views-definition", - "name": "@ui5-language-assistant/xml-views-definition", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "Definition logic for UI5 XML-Views" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/xml-views-validation": { - "name": "@ui5-language-assistant/xml-views-validation", - "type": "lib", - "data": { - "root": "packages/xml-views-validation", - "sourceRoot": "packages/xml-views-validation", - "name": "@ui5-language-assistant/xml-views-validation", - "tags": [ - "npm:private", - "npm:xml", - "npm:ui5", - "npm:openui5", - "npm:validations" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "Validations Logic for UI5 XML-Views" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/xml-views-quick-fix": { - "name": "@ui5-language-assistant/xml-views-quick-fix", - "type": "lib", - "data": { - "root": "packages/xml-views-quick-fix", - "sourceRoot": "packages/xml-views-quick-fix", - "name": "@ui5-language-assistant/xml-views-quick-fix", - "tags": ["npm:private", "npm:QuickFix"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "Logic for UI5 XML-Views quick-fixes" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/xml-views-tooltip": { - "name": "@ui5-language-assistant/xml-views-tooltip", - "type": "lib", - "data": { - "root": "packages/xml-views-tooltip", - "sourceRoot": "packages/xml-views-tooltip", - "name": "@ui5-language-assistant/xml-views-tooltip", - "tags": ["npm:private", "npm:Hover", "npm:tooltip"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "XML Views Tooltip" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/user-facing-text": { - "name": "@ui5-language-assistant/user-facing-text", - "type": "lib", - "data": { - "root": "packages/user-facing-text", - "sourceRoot": "packages/user-facing-text", - "name": "@ui5-language-assistant/user-facing-text", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "End user strings for UI5 Language Assistant" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/language-server": { - "name": "@ui5-language-assistant/language-server", - "type": "lib", - "data": { - "root": "packages/language-server", - "sourceRoot": "packages/language-server", - "name": "@ui5-language-assistant/language-server", - "tags": [ - "npm:private", - "npm:LSP", - "npm:language-server", - "npm:UI5", - "npm:OpenUI5", - "npm:SAPUI5" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage", - "update-snapshots", - "bundle" - ] - }, - "description": "UI5 Language Server" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage bundle", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./dist ./lib ./coverage ", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "metadata": { - "scriptContent": "node ./scripts/update-diagnostics-snapshots", - "runCommand": "pnpm run update-snapshots" - }, - "configurations": {}, - "parallelism": true - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "metadata": { - "scriptContent": "node esbuild.js", - "runCommand": "pnpm run bundle" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/test-utils": { - "name": "@ui5-language-assistant/test-utils", - "type": "lib", - "data": { - "root": "test-packages/test-utils", - "sourceRoot": "test-packages/test-utils", - "name": "@ui5-language-assistant/test-utils", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": ["ci", "clean", "compile", "compile:watch", "lint"] - }, - "description": "Test Utils" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output ./.model-cache", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/binding-parser": { - "name": "@ui5-language-assistant/binding-parser", - "type": "lib", - "data": { - "root": "packages/binding-parser", - "sourceRoot": "packages/binding-parser", - "name": "@ui5-language-assistant/binding-parser", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage", - "format:fix", - "test:update", - "test:update-data" - ] - }, - "description": "Parser for binding syntax" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - }, - "format:fix": { - "executor": "nx:run-script", - "options": { - "script": "format:fix" - }, - "metadata": { - "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", - "runCommand": "pnpm run format:fix" - }, - "configurations": {}, - "parallelism": true - }, - "test:update": { - "executor": "nx:run-script", - "options": { - "script": "test:update" - }, - "metadata": { - "scriptContent": "cross-env TEST_UPDATE=true npm-run-all compile test:update-data", - "runCommand": "pnpm run test:update" - }, - "configurations": {}, - "parallelism": true - }, - "test:update-data": { - "executor": "nx:run-script", - "options": { - "script": "test:update-data" - }, - "metadata": { - "scriptContent": "node scripts/updateTestData.js", - "runCommand": "pnpm run test:update-data" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/semantic-model": { - "name": "@ui5-language-assistant/semantic-model", - "type": "lib", - "data": { - "root": "packages/semantic-model", - "sourceRoot": "packages/semantic-model", - "name": "@ui5-language-assistant/semantic-model", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage", - "generate-json-api" - ] - }, - "description": "Semantic model provider for UI5" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean generate-json-api compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - }, - "generate-json-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-json-api" - }, - "metadata": { - "scriptContent": "json2ts -i ./resources/sap-ui-library-api.json -o ./src/api-json.d.ts --no-unknownAny --bannerComment \"/* This file is automatically generated. DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file (sap-ui-library-api.json) and run generate-json-api from the package.json to regenerate this file. */\" && prettier --write ./src/api-json.d.ts", - "runCommand": "pnpm run generate-json-api" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/test-framework": { - "name": "@ui5-language-assistant/test-framework", - "type": "lib", - "data": { - "root": "test-packages/framework", - "sourceRoot": "test-packages/framework", - "name": "@ui5-language-assistant/test-framework", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test" - ] - }, - "description": "Test Framework" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint test", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./.model-cache *.tsbuildinfo", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/logic-utils": { - "name": "@ui5-language-assistant/logic-utils", - "type": "lib", - "data": { - "root": "packages/logic-utils", - "sourceRoot": "packages/logic-utils", - "name": "@ui5-language-assistant/logic-utils", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "TBD" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/constant": { - "name": "@ui5-language-assistant/constant", - "type": "lib", - "data": { - "root": "packages/constant", - "sourceRoot": "packages/constant", - "name": "@ui5-language-assistant/constant", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "format:fix" - ] - }, - "description": "constant variables used across packages" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "echo nothing to test", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "format:fix": { - "executor": "nx:run-script", - "options": { - "script": "format:fix" - }, - "metadata": { - "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", - "runCommand": "pnpm run format:fix" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/settings": { - "name": "@ui5-language-assistant/settings", - "type": "lib", - "data": { - "root": "packages/settings", - "sourceRoot": "packages/settings", - "name": "@ui5-language-assistant/settings", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "Settings for UI5 Language Assistant" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/binding": { - "name": "@ui5-language-assistant/binding", - "type": "lib", - "data": { - "root": "packages/binding", - "sourceRoot": "packages/binding", - "name": "@ui5-language-assistant/binding", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage", - "format:fix" - ] - }, - "description": "UI5 LSP server extension for binding" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - }, - "format:fix": { - "executor": "nx:run-script", - "options": { - "script": "format:fix" - }, - "metadata": { - "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", - "runCommand": "pnpm run format:fix" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/context": { - "name": "@ui5-language-assistant/context", - "type": "lib", - "data": { - "root": "packages/context", - "sourceRoot": "packages/context", - "name": "@ui5-language-assistant/context", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "A context for an xml file" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/logger": { - "name": "@ui5-language-assistant/logger", - "type": "lib", - "data": { - "root": "packages/logger", - "sourceRoot": "packages/logger", - "name": "@ui5-language-assistant/logger", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage" - ] - }, - "description": "A logger package" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage ./nyc_output", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@ui5-language-assistant/fe": { - "name": "@ui5-language-assistant/fe", - "type": "lib", - "data": { - "root": "packages/fe", - "sourceRoot": "packages/fe", - "name": "@ui5-language-assistant/fe", - "tags": ["npm:private"], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "ci", - "clean", - "compile", - "compile:watch", - "lint", - "test", - "coverage", - "format:fix" - ] - }, - "description": "UI5 LSP server extension for annotation relevant building blocks" - }, - "targets": { - "ci": { - "executor": "nx:run-script", - "options": { - "script": "ci" - }, - "metadata": { - "scriptContent": "npm-run-all clean compile lint coverage", - "runCommand": "pnpm run ci" - }, - "configurations": {}, - "parallelism": true - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "metadata": { - "scriptContent": "rimraf ./lib ./coverage", - "runCommand": "pnpm run clean" - }, - "configurations": {}, - "parallelism": true - }, - "compile": { - "executor": "nx:run-script", - "options": { - "script": "compile" - }, - "metadata": { - "scriptContent": "pnpm run clean && tsc -p .", - "runCommand": "pnpm run compile" - }, - "configurations": {}, - "parallelism": true - }, - "compile:watch": { - "executor": "nx:run-script", - "options": { - "script": "compile:watch" - }, - "metadata": { - "scriptContent": "tsc -p . --watch", - "runCommand": "pnpm run compile:watch" - }, - "configurations": {}, - "parallelism": true - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "metadata": { - "scriptContent": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", - "runCommand": "pnpm run lint" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true - }, - "coverage": { - "executor": "nx:run-script", - "options": { - "script": "coverage" - }, - "metadata": { - "scriptContent": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true", - "runCommand": "pnpm run coverage" - }, - "configurations": {}, - "parallelism": true - }, - "format:fix": { - "executor": "nx:run-script", - "options": { - "script": "format:fix" - }, - "metadata": { - "scriptContent": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", - "runCommand": "pnpm run format:fix" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - } - }, - "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:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.3.0", - "packageName": "@ampproject/remapping", - "hash": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" - } - }, - "npm:@apidevtools/json-schema-ref-parser": { - "type": "npm", - "name": "npm:@apidevtools/json-schema-ref-parser", - "data": { - "version": "9.0.9", - "packageName": "@apidevtools/json-schema-ref-parser", - "hash": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==" - } - }, - "npm:@azure/abort-controller@1.1.0": { - "type": "npm", - "name": "npm:@azure/abort-controller@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "@azure/abort-controller", - "hash": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==" - } - }, - "npm:@azure/abort-controller": { - "type": "npm", - "name": "npm:@azure/abort-controller", - "data": { - "version": "2.1.2", - "packageName": "@azure/abort-controller", - "hash": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==" - } - }, - "npm:@azure/core-auth": { - "type": "npm", - "name": "npm:@azure/core-auth", - "data": { - "version": "1.8.0", - "packageName": "@azure/core-auth", - "hash": "sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==" - } - }, - "npm:@azure/core-rest-pipeline": { - "type": "npm", - "name": "npm:@azure/core-rest-pipeline", - "data": { - "version": "1.10.1", - "packageName": "@azure/core-rest-pipeline", - "hash": "sha512-Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==" - } - }, - "npm:@azure/core-tracing": { - "type": "npm", - "name": "npm:@azure/core-tracing", - "data": { - "version": "1.2.0", - "packageName": "@azure/core-tracing", - "hash": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==" - } - }, - "npm:@azure/core-util": { - "type": "npm", - "name": "npm:@azure/core-util", - "data": { - "version": "1.2.0", - "packageName": "@azure/core-util", - "hash": "sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==" - } - }, - "npm:@azure/logger": { - "type": "npm", - "name": "npm:@azure/logger", - "data": { - "version": "1.1.4", - "packageName": "@azure/logger", - "hash": "sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==" - } - }, - "npm:@azure/opentelemetry-instrumentation-azure-sdk": { - "type": "npm", - "name": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "data": { - "version": "1.0.0-beta.6", - "packageName": "@azure/opentelemetry-instrumentation-azure-sdk", - "hash": "sha512-JP6TJ7vDNX6r0gN2+EQBINTNqZ86frl1RAj5STtbLP1ClgIhcdXXb0hvq7CuEOv7InrroHMDoEYG80OQcWChug==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.24.7", - "packageName": "@babel/code-frame", - "hash": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==" - } - }, - "npm:@babel/code-frame@7.25.7": { - "type": "npm", - "name": "npm:@babel/code-frame@7.25.7", - "data": { - "version": "7.25.7", - "packageName": "@babel/code-frame", - "hash": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.25.7", - "packageName": "@babel/compat-data", - "hash": "sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.25.7", - "packageName": "@babel/core", - "hash": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.25.7", - "packageName": "@babel/generator", - "hash": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==" - } - }, - "npm:@babel/helper-validator-identifier@7.24.7": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier@7.24.7", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.25.7", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.25.7", - "packageName": "@babel/helpers", - "hash": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.24.7", - "packageName": "@babel/highlight", - "hash": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==" - } - }, - "npm:@babel/highlight@7.25.7": { - "type": "npm", - "name": "npm:@babel/highlight@7.25.7", - "data": { - "version": "7.25.7", - "packageName": "@babel/highlight", - "hash": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.25.7", - "packageName": "@babel/parser", - "hash": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==" - } - }, - "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-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.25.7", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==" - } - }, - "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.25.7", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==" - } - }, - "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.25.7", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.25.7", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.8", - "packageName": "@babel/runtime", - "hash": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.25.7", - "packageName": "@babel/template", - "hash": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.25.7", - "packageName": "@babel/traverse", - "hash": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.25.7", - "packageName": "@babel/types", - "hash": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@changesets/apply-release-plan": { - "type": "npm", - "name": "npm:@changesets/apply-release-plan", - "data": { - "version": "6.1.4", - "packageName": "@changesets/apply-release-plan", - "hash": "sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==" - } - }, - "npm:@changesets/assemble-release-plan": { - "type": "npm", - "name": "npm:@changesets/assemble-release-plan", - "data": { - "version": "5.2.4", - "packageName": "@changesets/assemble-release-plan", - "hash": "sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==" - } - }, - "npm:@changesets/changelog-git": { - "type": "npm", - "name": "npm:@changesets/changelog-git", - "data": { - "version": "0.1.14", - "packageName": "@changesets/changelog-git", - "hash": "sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==" - } - }, - "npm:@changesets/cli": { - "type": "npm", - "name": "npm:@changesets/cli", - "data": { - "version": "2.26.0", - "packageName": "@changesets/cli", - "hash": "sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==" - } - }, - "npm:@changesets/config": { - "type": "npm", - "name": "npm:@changesets/config", - "data": { - "version": "2.3.1", - "packageName": "@changesets/config", - "hash": "sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==" - } - }, - "npm:@changesets/errors": { - "type": "npm", - "name": "npm:@changesets/errors", - "data": { - "version": "0.1.4", - "packageName": "@changesets/errors", - "hash": "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==" - } - }, - "npm:@changesets/get-dependents-graph": { - "type": "npm", - "name": "npm:@changesets/get-dependents-graph", - "data": { - "version": "1.3.6", - "packageName": "@changesets/get-dependents-graph", - "hash": "sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==" - } - }, - "npm:@changesets/get-release-plan": { - "type": "npm", - "name": "npm:@changesets/get-release-plan", - "data": { - "version": "3.0.17", - "packageName": "@changesets/get-release-plan", - "hash": "sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==" - } - }, - "npm:@changesets/get-version-range-type": { - "type": "npm", - "name": "npm:@changesets/get-version-range-type", - "data": { - "version": "0.3.2", - "packageName": "@changesets/get-version-range-type", - "hash": "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==" - } - }, - "npm:@changesets/git": { - "type": "npm", - "name": "npm:@changesets/git", - "data": { - "version": "2.0.0", - "packageName": "@changesets/git", - "hash": "sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==" - } - }, - "npm:@changesets/logger": { - "type": "npm", - "name": "npm:@changesets/logger", - "data": { - "version": "0.0.5", - "packageName": "@changesets/logger", - "hash": "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==" - } - }, - "npm:@changesets/parse": { - "type": "npm", - "name": "npm:@changesets/parse", - "data": { - "version": "0.3.16", - "packageName": "@changesets/parse", - "hash": "sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==" - } - }, - "npm:@changesets/pre": { - "type": "npm", - "name": "npm:@changesets/pre", - "data": { - "version": "1.0.14", - "packageName": "@changesets/pre", - "hash": "sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==" - } - }, - "npm:@changesets/read": { - "type": "npm", - "name": "npm:@changesets/read", - "data": { - "version": "0.5.9", - "packageName": "@changesets/read", - "hash": "sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==" - } - }, - "npm:@changesets/types@4.1.0": { - "type": "npm", - "name": "npm:@changesets/types@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "@changesets/types", - "hash": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==" - } - }, - "npm:@changesets/types": { - "type": "npm", - "name": "npm:@changesets/types", - "data": { - "version": "5.2.1", - "packageName": "@changesets/types", - "hash": "sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==" - } - }, - "npm:@changesets/write": { - "type": "npm", - "name": "npm:@changesets/write", - "data": { - "version": "0.2.3", - "packageName": "@changesets/write", - "hash": "sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==" - } - }, - "npm:@chevrotain/cst-dts-gen": { - "type": "npm", - "name": "npm:@chevrotain/cst-dts-gen", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/cst-dts-gen", - "hash": "sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==" - } - }, - "npm:@chevrotain/gast": { - "type": "npm", - "name": "npm:@chevrotain/gast", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/gast", - "hash": "sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==" - } - }, - "npm:@chevrotain/types": { - "type": "npm", - "name": "npm:@chevrotain/types", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/types", - "hash": "sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==" - } - }, - "npm:@chevrotain/utils": { - "type": "npm", - "name": "npm:@chevrotain/utils", - "data": { - "version": "10.4.2", - "packageName": "@chevrotain/utils", - "hash": "sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.6.0", - "packageName": "@colors/colors", - "hash": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" - } - }, - "npm:@commitlint/cli": { - "type": "npm", - "name": "npm:@commitlint/cli", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/cli", - "hash": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==" - } - }, - "npm:@commitlint/config-conventional": { - "type": "npm", - "name": "npm:@commitlint/config-conventional", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/config-conventional", - "hash": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==" - } - }, - "npm:@commitlint/config-validator": { - "type": "npm", - "name": "npm:@commitlint/config-validator", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/config-validator", - "hash": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==" - } - }, - "npm:@commitlint/ensure": { - "type": "npm", - "name": "npm:@commitlint/ensure", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/ensure", - "hash": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==" - } - }, - "npm:@commitlint/execute-rule": { - "type": "npm", - "name": "npm:@commitlint/execute-rule", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/execute-rule", - "hash": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==" - } - }, - "npm:@commitlint/execute-rule@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/execute-rule@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/execute-rule", - "hash": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==" - } - }, - "npm:@commitlint/format": { - "type": "npm", - "name": "npm:@commitlint/format", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/format", - "hash": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==" - } - }, - "npm:@commitlint/is-ignored": { - "type": "npm", - "name": "npm:@commitlint/is-ignored", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/is-ignored", - "hash": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==" - } - }, - "npm:@commitlint/lint": { - "type": "npm", - "name": "npm:@commitlint/lint", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/lint", - "hash": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==" - } - }, - "npm:@commitlint/load": { - "type": "npm", - "name": "npm:@commitlint/load", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/load", - "hash": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==" - } - }, - "npm:@commitlint/load@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/load@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/load", - "hash": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==" - } - }, - "npm:@commitlint/message": { - "type": "npm", - "name": "npm:@commitlint/message", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/message", - "hash": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==" - } - }, - "npm:@commitlint/parse": { - "type": "npm", - "name": "npm:@commitlint/parse", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/parse", - "hash": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==" - } - }, - "npm:@commitlint/read": { - "type": "npm", - "name": "npm:@commitlint/read", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/read", - "hash": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==" - } - }, - "npm:@commitlint/resolve-extends": { - "type": "npm", - "name": "npm:@commitlint/resolve-extends", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/resolve-extends", - "hash": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==" - } - }, - "npm:@commitlint/resolve-extends@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/resolve-extends@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/resolve-extends", - "hash": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==" - } - }, - "npm:@commitlint/rules": { - "type": "npm", - "name": "npm:@commitlint/rules", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/rules", - "hash": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==" - } - }, - "npm:@commitlint/to-lines": { - "type": "npm", - "name": "npm:@commitlint/to-lines", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/to-lines", - "hash": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==" - } - }, - "npm:@commitlint/top-level": { - "type": "npm", - "name": "npm:@commitlint/top-level", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/top-level", - "hash": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==" - } - }, - "npm:@commitlint/types": { - "type": "npm", - "name": "npm:@commitlint/types", - "data": { - "version": "11.0.0", - "packageName": "@commitlint/types", - "hash": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==" - } - }, - "npm:@commitlint/types@19.5.0": { - "type": "npm", - "name": "npm:@commitlint/types@19.5.0", - "data": { - "version": "19.5.0", - "packageName": "@commitlint/types", - "hash": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==" - } - }, - "npm:@dabh/diagnostics": { - "type": "npm", - "name": "npm:@dabh/diagnostics", - "data": { - "version": "2.0.3", - "packageName": "@dabh/diagnostics", - "hash": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==" - } - }, - "npm:@emnapi/core": { - "type": "npm", - "name": "npm:@emnapi/core", - "data": { - "version": "1.3.0", - "packageName": "@emnapi/core", - "hash": "sha512-9hRqVlhwqBqCoToZ3hFcNVqL+uyHV06Y47ax4UB8L6XgVRqYz7MFnfessojo6+5TK89pKwJnpophwjTMOeKI9Q==" - } - }, - "npm:@emnapi/runtime": { - "type": "npm", - "name": "npm:@emnapi/runtime", - "data": { - "version": "1.3.0", - "packageName": "@emnapi/runtime", - "hash": "sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==" - } - }, - "npm:@emnapi/wasi-threads": { - "type": "npm", - "name": "npm:@emnapi/wasi-threads", - "data": { - "version": "1.0.1", - "packageName": "@emnapi/wasi-threads", - "hash": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==" - } - }, - "npm:@esbuild/android-arm64": { - "type": "npm", - "name": "npm:@esbuild/android-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==" - } - }, - "npm:@esbuild/android-arm": { - "type": "npm", - "name": "npm:@esbuild/android-arm", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/android-arm", - "hash": "sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==" - } - }, - "npm:@esbuild/android-x64": { - "type": "npm", - "name": "npm:@esbuild/android-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/android-x64", - "hash": "sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==" - } - }, - "npm:@esbuild/darwin-arm64": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==" - } - }, - "npm:@esbuild/darwin-x64": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==" - } - }, - "npm:@esbuild/freebsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==" - } - }, - "npm:@esbuild/freebsd-x64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==" - } - }, - "npm:@esbuild/linux-arm64": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==" - } - }, - "npm:@esbuild/linux-arm": { - "type": "npm", - "name": "npm:@esbuild/linux-arm", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==" - } - }, - "npm:@esbuild/linux-ia32": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==" - } - }, - "npm:@esbuild/linux-loong64": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==" - } - }, - "npm:@esbuild/linux-mips64el": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==" - } - }, - "npm:@esbuild/linux-ppc64": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==" - } - }, - "npm:@esbuild/linux-riscv64": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==" - } - }, - "npm:@esbuild/linux-s390x": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==" - } - }, - "npm:@esbuild/netbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==" - } - }, - "npm:@esbuild/openbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==" - } - }, - "npm:@esbuild/sunos-x64": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==" - } - }, - "npm:@esbuild/win32-arm64": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==" - } - }, - "npm:@esbuild/win32-ia32": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.17.12", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "0.3.0", - "packageName": "@eslint/eslintrc", - "hash": "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==" - } - }, - "npm:@formatjs/cli": { - "type": "npm", - "name": "npm:@formatjs/cli", - "data": { - "version": "2.15.0", - "packageName": "@formatjs/cli", - "hash": "sha512-Hv7Z3xeGcgTpn1jA1/x7tc9UYbF9Udn/77xRf7E22Vn1mGJM/DftVqnpgLeNpd0d3xSftYw+rhaShNO19BsT6A==" - } - }, - "npm:@formatjs/ecma402-abstract": { - "type": "npm", - "name": "npm:@formatjs/ecma402-abstract", - "data": { - "version": "1.5.0", - "packageName": "@formatjs/ecma402-abstract", - "hash": "sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==" - } - }, - "npm:@formatjs/ts-transformer": { - "type": "npm", - "name": "npm:@formatjs/ts-transformer", - "data": { - "version": "2.13.0", - "packageName": "@formatjs/ts-transformer", - "hash": "sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==" - } - }, - "npm:@gar/promisify": { - "type": "npm", - "name": "npm:@gar/promisify", - "data": { - "version": "1.1.3", - "packageName": "@gar/promisify", - "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - } - }, - "npm:@hutson/parse-repository-url": { - "type": "npm", - "name": "npm:@hutson/parse-repository-url", - "data": { - "version": "3.0.2", - "packageName": "@hutson/parse-repository-url", - "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "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-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "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@25.5.0": { - "type": "npm", - "name": "npm:@jest/types@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "@jest/types", - "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" - } - }, - "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.5", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.2", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.2.1", - "packageName": "@jridgewell/set-array", - "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.6", - "packageName": "@jridgewell/source-map", - "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.5.0", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.25", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" - } - }, - "npm:@jsdevtools/ono": { - "type": "npm", - "name": "npm:@jsdevtools/ono", - "data": { - "version": "7.1.3", - "packageName": "@jsdevtools/ono", - "hash": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" - } - }, - "npm:@kwsites/file-exists": { - "type": "npm", - "name": "npm:@kwsites/file-exists", - "data": { - "version": "1.1.1", - "packageName": "@kwsites/file-exists", - "hash": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==" - } - }, - "npm:@kwsites/promise-deferred": { - "type": "npm", - "name": "npm:@kwsites/promise-deferred", - "data": { - "version": "1.1.1", - "packageName": "@kwsites/promise-deferred", - "hash": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==" - } - }, - "npm:@lerna/child-process": { - "type": "npm", - "name": "npm:@lerna/child-process", - "data": { - "version": "7.4.2", - "packageName": "@lerna/child-process", - "hash": "sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==" - } - }, - "npm:@lerna/create": { - "type": "npm", - "name": "npm:@lerna/create", - "data": { - "version": "7.4.2", - "packageName": "@lerna/create", - "hash": "sha512-1wplFbQ52K8E/unnqB0Tq39Z4e+NEoNrpovEnl6GpsTUrC6WDp8+w0Le2uCBV0hXyemxChduCkLz4/y1H1wTeg==" - } - }, - "npm:@manypkg/find-root": { - "type": "npm", - "name": "npm:@manypkg/find-root", - "data": { - "version": "1.1.0", - "packageName": "@manypkg/find-root", - "hash": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==" - } - }, - "npm:@manypkg/get-packages": { - "type": "npm", - "name": "npm:@manypkg/get-packages", - "data": { - "version": "1.1.3", - "packageName": "@manypkg/get-packages", - "hash": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==" - } - }, - "npm:@microsoft/applicationinsights-web-snippet": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-web-snippet", - "data": { - "version": "1.2.1", - "packageName": "@microsoft/applicationinsights-web-snippet", - "hash": "sha512-+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==" - } - }, - "npm:@napi-rs/wasm-runtime": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime", - "data": { - "version": "0.2.4", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" - } - }, - "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@2.1.2": { - "type": "npm", - "name": "npm:@npmcli/fs@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "@npmcli/fs", - "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.1", - "packageName": "@npmcli/fs", - "hash": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==" - } - }, - "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/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.1.0", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==" - } - }, - "npm:@npmcli/move-file": { - "type": "npm", - "name": "npm:@npmcli/move-file", - "data": { - "version": "2.0.1", - "packageName": "@npmcli/move-file", - "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" - } - }, - "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/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/devkit", - "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" - } - }, - "npm:@nrwl/tao@16.10.0": { - "type": "npm", - "name": "npm:@nrwl/tao@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/tao", - "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "19.8.4", - "packageName": "@nrwl/tao", - "hash": "sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nx/devkit", - "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" - } - }, - "npm:@nx/nx-darwin-arm64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ==" - } - }, - "npm:@nx/nx-darwin-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew==" - } - }, - "npm:@nx/nx-freebsd-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw==" - } - }, - "npm:@nx/nx-linux-arm64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==" - } - }, - "npm:@nx/nx-linux-arm64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==" - } - }, - "npm:@nx/nx-linux-x64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==" - } - }, - "npm:@nx/nx-linux-x64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-JB4tAuZBCF0yqSnKF3pHXa0b7LA3ebi3Bw08QmMr//ON4aU+eXURGBuj9XvULD2prY+gpBrvf+MsG1XJAHL6Zg==" - } - }, - "npm:@nx/nx-win32-arm64-msvc@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ==" - } - }, - "npm:@nx/nx-win32-x64-msvc@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "19.8.4", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g==" - } - }, - "npm:@octokit/auth-token": { - "type": "npm", - "name": "npm:@octokit/auth-token", - "data": { - "version": "3.0.4", - "packageName": "@octokit/auth-token", - "hash": "sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==" - } - }, - "npm:@octokit/core": { - "type": "npm", - "name": "npm:@octokit/core", - "data": { - "version": "4.2.4", - "packageName": "@octokit/core", - "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" - } - }, - "npm:@octokit/endpoint": { - "type": "npm", - "name": "npm:@octokit/endpoint", - "data": { - "version": "7.0.6", - "packageName": "@octokit/endpoint", - "hash": "sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==" - } - }, - "npm:@octokit/graphql": { - "type": "npm", - "name": "npm:@octokit/graphql", - "data": { - "version": "5.0.6", - "packageName": "@octokit/graphql", - "hash": "sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==" - } - }, - "npm:@octokit/openapi-types": { - "type": "npm", - "name": "npm:@octokit/openapi-types", - "data": { - "version": "18.1.1", - "packageName": "@octokit/openapi-types", - "hash": "sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==" - } - }, - "npm:@octokit/plugin-enterprise-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-enterprise-rest", - "data": { - "version": "6.0.1", - "packageName": "@octokit/plugin-enterprise-rest", - "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" - } - }, - "npm:@octokit/plugin-paginate-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest", - "data": { - "version": "6.1.2", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" - } - }, - "npm:@octokit/plugin-request-log": { - "type": "npm", - "name": "npm:@octokit/plugin-request-log", - "data": { - "version": "1.0.4", - "packageName": "@octokit/plugin-request-log", - "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" - } - }, - "npm:@octokit/plugin-rest-endpoint-methods": { - "type": "npm", - "name": "npm:@octokit/plugin-rest-endpoint-methods", - "data": { - "version": "7.2.3", - "packageName": "@octokit/plugin-rest-endpoint-methods", - "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" - } - }, - "npm:@octokit/request-error": { - "type": "npm", - "name": "npm:@octokit/request-error", - "data": { - "version": "3.0.3", - "packageName": "@octokit/request-error", - "hash": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==" - } - }, - "npm:@octokit/request": { - "type": "npm", - "name": "npm:@octokit/request", - "data": { - "version": "6.2.8", - "packageName": "@octokit/request", - "hash": "sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==" - } - }, - "npm:@octokit/rest": { - "type": "npm", - "name": "npm:@octokit/rest", - "data": { - "version": "19.0.11", - "packageName": "@octokit/rest", - "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" - } - }, - "npm:@octokit/tsconfig": { - "type": "npm", - "name": "npm:@octokit/tsconfig", - "data": { - "version": "1.0.2", - "packageName": "@octokit/tsconfig", - "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" - } - }, - "npm:@octokit/types@10.0.0": { - "type": "npm", - "name": "npm:@octokit/types@10.0.0", - "data": { - "version": "10.0.0", - "packageName": "@octokit/types", - "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" - } - }, - "npm:@octokit/types": { - "type": "npm", - "name": "npm:@octokit/types", - "data": { - "version": "9.3.2", - "packageName": "@octokit/types", - "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" - } - }, - "npm:@opentelemetry/api-logs": { - "type": "npm", - "name": "npm:@opentelemetry/api-logs", - "data": { - "version": "0.52.1", - "packageName": "@opentelemetry/api-logs", - "hash": "sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==" - } - }, - "npm:@opentelemetry/api": { - "type": "npm", - "name": "npm:@opentelemetry/api", - "data": { - "version": "1.9.0", - "packageName": "@opentelemetry/api", - "hash": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==" - } - }, - "npm:@opentelemetry/core": { - "type": "npm", - "name": "npm:@opentelemetry/core", - "data": { - "version": "1.26.0", - "packageName": "@opentelemetry/core", - "hash": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==" - } - }, - "npm:@opentelemetry/instrumentation": { - "type": "npm", - "name": "npm:@opentelemetry/instrumentation", - "data": { - "version": "0.52.1", - "packageName": "@opentelemetry/instrumentation", - "hash": "sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==" - } - }, - "npm:@opentelemetry/resources": { - "type": "npm", - "name": "npm:@opentelemetry/resources", - "data": { - "version": "1.26.0", - "packageName": "@opentelemetry/resources", - "hash": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==" - } - }, - "npm:@opentelemetry/sdk-trace-base": { - "type": "npm", - "name": "npm:@opentelemetry/sdk-trace-base", - "data": { - "version": "1.26.0", - "packageName": "@opentelemetry/sdk-trace-base", - "hash": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==" - } - }, - "npm:@opentelemetry/semantic-conventions": { - "type": "npm", - "name": "npm:@opentelemetry/semantic-conventions", - "data": { - "version": "1.27.0", - "packageName": "@opentelemetry/semantic-conventions", - "hash": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==" - } - }, - "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:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@prettier/plugin-xml": { - "type": "npm", - "name": "npm:@prettier/plugin-xml", - "data": { - "version": "2.2.0", - "packageName": "@prettier/plugin-xml", - "hash": "sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==" - } - }, - "npm:@rtsao/scc": { - "type": "npm", - "name": "npm:@rtsao/scc", - "data": { - "version": "1.1.0", - "packageName": "@rtsao/scc", - "hash": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" - } - }, - "npm:@sap-ux/annotation-converter": { - "type": "npm", - "name": "npm:@sap-ux/annotation-converter", - "data": { - "version": "0.5.20", - "packageName": "@sap-ux/annotation-converter", - "hash": "sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==" - } - }, - "npm:@sap-ux/edmx-parser": { - "type": "npm", - "name": "npm:@sap-ux/edmx-parser", - "data": { - "version": "0.5.13", - "packageName": "@sap-ux/edmx-parser", - "hash": "sha512-V58Iul9fSSMjWs1x7CimGyfnojnYTKcutGstRN4gmz6t4ijXsXQrTMzVetDbZ3EA2UznZtzreVF/8/gXC5MK3A==" - } - }, - "npm:@sap-ux/i18n": { - "type": "npm", - "name": "npm:@sap-ux/i18n", - "data": { - "version": "0.1.0", - "packageName": "@sap-ux/i18n", - "hash": "sha512-v16e/m+DShlqQELz6/VQZ454FeHYr/JbQA20xGT62yKjuvhG1tSKHwBrss8NYT0A9Lr8XxrKZpUZghD0iqY1/A==" - } - }, - "npm:@sap-ux/project-access": { - "type": "npm", - "name": "npm:@sap-ux/project-access", - "data": { - "version": "1.25.5", - "packageName": "@sap-ux/project-access", - "hash": "sha512-ZBUneSOIoX8jRUUf+ffmD37wuIBikKOjmjfmMZ0dn6dp+HoQSSXhnObsP5//51d3stPZ27y40HOHkdOon3CmrQ==" - } - }, - "npm:@sap-ux/ui5-config": { - "type": "npm", - "name": "npm:@sap-ux/ui5-config", - "data": { - "version": "0.23.1", - "packageName": "@sap-ux/ui5-config", - "hash": "sha512-2pfA5GX+Oho1SpRKgWdIiY6tW8L812Jjr/zNiDm27hmua0GKifIUxt5CanN11MB+YAwkg0rJwHH/2aWLeoFiuA==" - } - }, - "npm:@sap-ux/vocabularies-types": { - "type": "npm", - "name": "npm:@sap-ux/vocabularies-types", - "data": { - "version": "0.10.14", - "packageName": "@sap-ux/vocabularies-types", - "hash": "sha512-PtjyRBQbjCFHE1TAXz3DXuyD46eoobAK3BmOsjS60o2dNHMU9EVL1/sbbeiB2917ZV0ARezd3C1BNEict5VXfg==" - } - }, - "npm:@sap-ux/yaml": { - "type": "npm", - "name": "npm:@sap-ux/yaml", - "data": { - "version": "0.16.0", - "packageName": "@sap-ux/yaml", - "hash": "sha512-jojo+NDZyuguUmTznj+yof2luSRarfqR2x09jRoVhS0CT2oJaAxyd60yXRtuCUFW7FbuEii+jSf+aeBU7QSPVw==" - } - }, - "npm:@sap/bas-sdk": { - "type": "npm", - "name": "npm:@sap/bas-sdk", - "data": { - "version": "3.8.9", - "packageName": "@sap/bas-sdk", - "hash": "sha512-ycYttnSTlEPjDrb0svSv0jBgqEvoekD4bNB4IxuKCu5OKk5FycwsOTgufU8CXYf1ag23wTlurN+N7c4Po6PcJQ==" - } - }, - "npm:@sap/swa-for-sapbas-vsx@1.1.9": { - "type": "npm", - "name": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "data": { - "version": "1.1.9", - "packageName": "@sap/swa-for-sapbas-vsx", - "hash": "sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==" - } - }, - "npm:@sap/swa-for-sapbas-vsx": { - "type": "npm", - "name": "npm:@sap/swa-for-sapbas-vsx", - "data": { - "version": "2.0.7", - "packageName": "@sap/swa-for-sapbas-vsx", - "hash": "sha512-EPV6cj5AdCSUp9FLHqKw+nochB5tOjzV840+0pQ1ebEPdzqaQ+e3RjFjqfIrBEZn5yD3EiLPR/3qYTDBh1MarQ==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "1.1.0", - "packageName": "@sigstore/bundle", - "hash": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==" - } - }, - "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": "1.0.0", - "packageName": "@sigstore/sign", - "hash": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "1.0.3", - "packageName": "@sigstore/tuf", - "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" - } - }, - "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:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.1", - "packageName": "@sinonjs/commons", - "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" - } - }, - "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:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "1.1.2", - "packageName": "@tootallnate/once", - "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" - } - }, - "npm:@tootallnate/once@2.0.0": { - "type": "npm", - "name": "npm:@tootallnate/once@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "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/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "1.0.4", - "packageName": "@tufjs/models", - "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" - } - }, - "npm:@tybys/wasm-util": { - "type": "npm", - "name": "npm:@tybys/wasm-util", - "data": { - "version": "0.9.0", - "packageName": "@tybys/wasm-util", - "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" - } - }, - "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.6", - "packageName": "@types/babel__traverse", - "hash": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==" - } - }, - "npm:@types/chai": { - "type": "npm", - "name": "npm:@types/chai", - "data": { - "version": "5.0.0", - "packageName": "@types/chai", - "hash": "sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==" - } - }, - "npm:@types/conventional-commits-parser": { - "type": "npm", - "name": "npm:@types/conventional-commits-parser", - "data": { - "version": "5.0.0", - "packageName": "@types/conventional-commits-parser", - "hash": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==" - } - }, - "npm:@types/deep-freeze-strict": { - "type": "npm", - "name": "npm:@types/deep-freeze-strict", - "data": { - "version": "1.1.0", - "packageName": "@types/deep-freeze-strict", - "hash": "sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.6", - "packageName": "@types/estree", - "hash": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" - } - }, - "npm:@types/fs-extra": { - "type": "npm", - "name": "npm:@types/fs-extra", - "data": { - "version": "9.0.11", - "packageName": "@types/fs-extra", - "hash": "sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==" - } - }, - "npm:@types/glob": { - "type": "npm", - "name": "npm:@types/glob", - "data": { - "version": "8.1.0", - "packageName": "@types/glob", - "hash": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==" - } - }, - "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/is-ci": { - "type": "npm", - "name": "npm:@types/is-ci", - "data": { - "version": "3.0.4", - "packageName": "@types/is-ci", - "hash": "sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==" - } - }, - "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@1.1.2": { - "type": "npm", - "name": "npm:@types/istanbul-reports@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "@types/istanbul-reports", - "hash": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==" - } - }, - "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-specific-snapshot": { - "type": "npm", - "name": "npm:@types/jest-specific-snapshot", - "data": { - "version": "0.5.5", - "packageName": "@types/jest-specific-snapshot", - "hash": "sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.2.6", - "packageName": "@types/jest", - "hash": "sha512-XEUC/Tgw3uMh6Ho8GkUtQ2lPhY5Fmgyp3TdlkTJs1W9VgNxs+Ow/x3Elh8lHQKqCbZL0AubQuqWjHVT033Hhrw==" - } - }, - "npm:@types/js-yaml": { - "type": "npm", - "name": "npm:@types/js-yaml", - "data": { - "version": "4.0.5", - "packageName": "@types/js-yaml", - "hash": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==" - } - }, - "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/json-stable-stringify": { - "type": "npm", - "name": "npm:@types/json-stable-stringify", - "data": { - "version": "1.0.36", - "packageName": "@types/json-stable-stringify", - "hash": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - } - }, - "npm:@types/klaw-sync": { - "type": "npm", - "name": "npm:@types/klaw-sync", - "data": { - "version": "6.0.0", - "packageName": "@types/klaw-sync", - "hash": "sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.14.168", - "packageName": "@types/lodash", - "hash": "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==" - } - }, - "npm:@types/loud-rejection": { - "type": "npm", - "name": "npm:@types/loud-rejection", - "data": { - "version": "2.0.0", - "packageName": "@types/loud-rejection", - "hash": "sha512-oTHISsIybJGoh3b3Ay/10csbAd2k0su7G7DGrE1QWciC+IdydPm0WMw1+Gr9YMYjPiJ5poB3g5Ev73IlLoavLw==" - } - }, - "npm:@types/minimatch@3.0.5": { - "type": "npm", - "name": "npm:@types/minimatch@3.0.5", - "data": { - "version": "3.0.5", - "packageName": "@types/minimatch", - "hash": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - } - }, - "npm:@types/minimatch": { - "type": "npm", - "name": "npm:@types/minimatch", - "data": { - "version": "5.1.2", - "packageName": "@types/minimatch", - "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - } - }, - "npm:@types/minimist": { - "type": "npm", - "name": "npm:@types/minimist", - "data": { - "version": "1.2.5", - "packageName": "@types/minimist", - "hash": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==" - } - }, - "npm:@types/node-fetch": { - "type": "npm", - "name": "npm:@types/node-fetch", - "data": { - "version": "2.5.10", - "packageName": "@types/node-fetch", - "hash": "sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==" - } - }, - "npm:@types/node@12.20.55": { - "type": "npm", - "name": "npm:@types/node@12.20.55", - "data": { - "version": "12.20.55", - "packageName": "@types/node", - "hash": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - } - }, - "npm:@types/node@14.18.63": { - "type": "npm", - "name": "npm:@types/node@14.18.63", - "data": { - "version": "14.18.63", - "packageName": "@types/node", - "hash": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.11.9", - "packageName": "@types/node", - "hash": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" - } - }, - "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/prettier@1.19.1": { - "type": "npm", - "name": "npm:@types/prettier@1.19.1", - "data": { - "version": "1.19.1", - "packageName": "@types/prettier", - "hash": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==" - } - }, - "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/rimraf": { - "type": "npm", - "name": "npm:@types/rimraf", - "data": { - "version": "3.0.0", - "packageName": "@types/rimraf", - "hash": "sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==" - } - }, - "npm:@types/semver@6.2.7": { - "type": "npm", - "name": "npm:@types/semver@6.2.7", - "data": { - "version": "6.2.7", - "packageName": "@types/semver", - "hash": "sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "7.3.12", - "packageName": "@types/semver", - "hash": "sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==" - } - }, - "npm:@types/shimmer": { - "type": "npm", - "name": "npm:@types/shimmer", - "data": { - "version": "1.2.0", - "packageName": "@types/shimmer", - "hash": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==" - } - }, - "npm:@types/sinon-chai": { - "type": "npm", - "name": "npm:@types/sinon-chai", - "data": { - "version": "3.2.5", - "packageName": "@types/sinon-chai", - "hash": "sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==" - } - }, - "npm:@types/sinon": { - "type": "npm", - "name": "npm:@types/sinon", - "data": { - "version": "9.0.10", - "packageName": "@types/sinon", - "hash": "sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.5", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "1.0.1", - "packageName": "@types/stack-utils", - "hash": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" - } - }, - "npm:@types/stack-utils@2.0.3": { - "type": "npm", - "name": "npm:@types/stack-utils@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/tmp": { - "type": "npm", - "name": "npm:@types/tmp", - "data": { - "version": "0.2.0", - "packageName": "@types/tmp", - "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" - } - }, - "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/triple-beam": { - "type": "npm", - "name": "npm:@types/triple-beam", - "data": { - "version": "1.3.5", - "packageName": "@types/triple-beam", - "hash": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" - } - }, - "npm:@types/vscode": { - "type": "npm", - "name": "npm:@types/vscode", - "data": { - "version": "1.47.0", - "packageName": "@types/vscode", - "hash": "sha512-nJA37ykkz9FYA0ZOQUSc3OZnhuzEW2vUhUEo4MiduUo82jGwwcLfyvmgd/Q7b0WrZAAceojGhZybg319L24bTA==" - } - }, - "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/yargs@15.0.19": { - "type": "npm", - "name": "npm:@types/yargs@15.0.19", - "data": { - "version": "15.0.19", - "packageName": "@types/yargs", - "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.33", - "packageName": "@types/yargs", - "hash": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==" - } - }, - "npm:@typescript-eslint/experimental-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/experimental-utils", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/experimental-utils", - "hash": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-sUDeuCjBU+ZF3Lzw0hphTyScmDDJ5QVkyE21pRoBo8iDl7WBtVFS+WDN3blY1CH3SBt7EmYCw6wfmJjF0l/uYg==" - } - }, - "npm:@typescript-eslint/scope-manager@4.14.0": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@4.14.0", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A==" - } - }, - "npm:@typescript-eslint/types@4.33.0": { - "type": "npm", - "name": "npm:@typescript-eslint/types@4.33.0", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag==" - } - }, - "npm:@typescript-eslint/typescript-estree@4.33.0": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@4.33.0", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "4.14.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA==" - } - }, - "npm:@typescript-eslint/visitor-keys@4.33.0": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@4.33.0", - "data": { - "version": "4.33.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==" - } - }, - "npm:@vscode-logging/logger": { - "type": "npm", - "name": "npm:@vscode-logging/logger", - "data": { - "version": "1.2.2", - "packageName": "@vscode-logging/logger", - "hash": "sha512-QKg3BGgdP05hD8l4Koaz6RJSo5v9cGfGBI6wbvVuUIhJ3BUCbeRzyjMrpvXgUCaC/1pkp1ViAeEUxyn0kzNCZA==" - } - }, - "npm:@vscode-logging/types": { - "type": "npm", - "name": "npm:@vscode-logging/types", - "data": { - "version": "0.1.4", - "packageName": "@vscode-logging/types", - "hash": "sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==" - } - }, - "npm:@vue/compiler-core": { - "type": "npm", - "name": "npm:@vue/compiler-core", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-core", - "hash": "sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==" - } - }, - "npm:@vue/compiler-dom": { - "type": "npm", - "name": "npm:@vue/compiler-dom", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-dom", - "hash": "sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==" - } - }, - "npm:@vue/compiler-sfc": { - "type": "npm", - "name": "npm:@vue/compiler-sfc", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-sfc", - "hash": "sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==" - } - }, - "npm:@vue/compiler-ssr": { - "type": "npm", - "name": "npm:@vue/compiler-ssr", - "data": { - "version": "3.5.11", - "packageName": "@vue/compiler-ssr", - "hash": "sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==" - } - }, - "npm:@vue/shared": { - "type": "npm", - "name": "npm:@vue/shared", - "data": { - "version": "3.5.11", - "packageName": "@vue/shared", - "hash": "sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==" - } - }, - "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.12.1", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" - } - }, - "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.12.1", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==" - } - }, - "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.12.1", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==" - } - }, - "npm:@xml-tools/ast-position": { - "type": "npm", - "name": "npm:@xml-tools/ast-position", - "data": { - "version": "2.0.2", - "packageName": "@xml-tools/ast-position", - "hash": "sha512-SuZrlXPJICF/mtcjPe8Yq5gTX6XaLyWACQyeVG6X+dMuHWiZ5ckLvlMXs5SZg9Xxw21d3Q/P1MFyM33HQPzkNg==" - } - }, - "npm:@xml-tools/ast": { - "type": "npm", - "name": "npm:@xml-tools/ast", - "data": { - "version": "5.0.0", - "packageName": "@xml-tools/ast", - "hash": "sha512-NLMBbvW1S6bG+pHvPfQeM3ci+le9LexuA4E+obqoRpTWqlJSQGiPKxq8p+HauQmdlF4UC9GUIGsa+9FNFefKyg==" - } - }, - "npm:@xml-tools/common": { - "type": "npm", - "name": "npm:@xml-tools/common", - "data": { - "version": "0.1.2", - "packageName": "@xml-tools/common", - "hash": "sha512-5U0CbB3u5WDRKX+oPjHEm6ZkJk8z5LZMpEI6uzBzcnP+3dIxahCF90lhwljQ/rPVSLMLxLfv72xru6RbePeLWA==" - } - }, - "npm:@xml-tools/content-assist": { - "type": "npm", - "name": "npm:@xml-tools/content-assist", - "data": { - "version": "3.1.7", - "packageName": "@xml-tools/content-assist", - "hash": "sha512-qkOSsQt3arJANrJnypXmLzXaCeFX0qNCZDvrNue0LDhWP+MbGMJO50Vh5FLYCQUCzDFHIzi8T53abCkbO1e3ug==" - } - }, - "npm:@xml-tools/parser@1.0.11": { - "type": "npm", - "name": "npm:@xml-tools/parser@1.0.11", - "data": { - "version": "1.0.11", - "packageName": "@xml-tools/parser", - "hash": "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==" - } - }, - "npm:@xml-tools/parser": { - "type": "npm", - "name": "npm:@xml-tools/parser", - "data": { - "version": "1.0.7", - "packageName": "@xml-tools/parser", - "hash": "sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ==" - } - }, - "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@0.0.6": { - "type": "npm", - "name": "npm:@zkochan/js-yaml@0.0.6", - "data": { - "version": "0.0.6", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.7", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "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:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-attributes": { - "type": "npm", - "name": "npm:acorn-import-attributes", - "data": { - "version": "1.9.5", - "packageName": "acorn-import-attributes", - "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" - } - }, - "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.4", - "packageName": "acorn-walk", - "hash": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "7.4.1", - "packageName": "acorn", - "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - }, - "npm:acorn@8.12.1": { - "type": "npm", - "name": "npm:acorn@8.12.1", - "data": { - "version": "8.12.1", - "packageName": "acorn", - "hash": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==" - } - }, - "npm:add-stream": { - "type": "npm", - "name": "npm:add-stream", - "data": { - "version": "1.0.0", - "packageName": "add-stream", - "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:agentkeepalive": { - "type": "npm", - "name": "npm:agentkeepalive", - "data": { - "version": "4.5.0", - "packageName": "agentkeepalive", - "hash": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "6.12.3", - "packageName": "ajv", - "hash": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==" - } - }, - "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@8.17.1": { - "type": "npm", - "name": "npm:ajv@8.17.1", - "data": { - "version": "8.17.1", - "packageName": "ajv", - "hash": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==" - } - }, - "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-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex@6.1.0": { - "type": "npm", - "name": "npm:ansi-regex@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "ansi-regex", - "hash": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" - } - }, - "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: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:any-promise": { - "type": "npm", - "name": "npm:any-promise", - "data": { - "version": "1.3.0", - "packageName": "any-promise", - "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:append-transform": { - "type": "npm", - "name": "npm:append-transform", - "data": { - "version": "2.0.0", - "packageName": "append-transform", - "hash": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==" - } - }, - "npm:applicationinsights": { - "type": "npm", - "name": "npm:applicationinsights", - "data": { - "version": "2.9.2", - "packageName": "applicationinsights", - "hash": "sha512-wlDiD7v0BQNM8oNzsf9C836R5ze25u+CuCEZsbA5xMIXYYBxkqkWE/mo9GFJM7rsKaiGqpxEwWmePHKD2Lwy2w==" - } - }, - "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:archy": { - "type": "npm", - "name": "npm:archy", - "data": { - "version": "1.0.0", - "packageName": "archy", - "hash": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==" - } - }, - "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:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.1", - "packageName": "array-buffer-byte-length", - "hash": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==" - } - }, - "npm:array-differ": { - "type": "npm", - "name": "npm:array-differ", - "data": { - "version": "3.0.0", - "packageName": "array-differ", - "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" - } - }, - "npm:array-find-index": { - "type": "npm", - "name": "npm:array-find-index", - "data": { - "version": "1.0.2", - "packageName": "array-find-index", - "hash": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==" - } - }, - "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.8", - "packageName": "array-includes", - "hash": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==" - } - }, - "npm:array-timsort": { - "type": "npm", - "name": "npm:array-timsort", - "data": { - "version": "1.0.3", - "packageName": "array-timsort", - "hash": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" - } - }, - "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:array.prototype.findlastindex": { - "type": "npm", - "name": "npm:array.prototype.findlastindex", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.findlastindex", - "hash": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flat", - "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flatmap", - "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.3", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==" - } - }, - "npm:arrify@1.0.1": { - "type": "npm", - "name": "npm:arrify@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "arrify", - "hash": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" - } - }, - "npm:arrify": { - "type": "npm", - "name": "npm:arrify", - "data": { - "version": "2.0.1", - "packageName": "arrify", - "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" - } - }, - "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-never": { - "type": "npm", - "name": "npm:assert-never", - "data": { - "version": "1.2.1", - "packageName": "assert-never", - "hash": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - } - }, - "npm:assertion-error": { - "type": "npm", - "name": "npm:assertion-error", - "data": { - "version": "1.1.0", - "packageName": "assertion-error", - "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-hook-jl": { - "type": "npm", - "name": "npm:async-hook-jl", - "data": { - "version": "1.7.6", - "packageName": "async-hook-jl", - "hash": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==" - } - }, - "npm:async-listener": { - "type": "npm", - "name": "npm:async-listener", - "data": { - "version": "0.6.10", - "packageName": "async-listener", - "hash": "sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.5", - "packageName": "async", - "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - } - }, - "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:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.7", - "packageName": "available-typed-arrays", - "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" - } - }, - "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.13.2", - "packageName": "aws4", - "hash": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.6.1", - "packageName": "axios", - "hash": "sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==" - } - }, - "npm:axios@1.7.4": { - "type": "npm", - "name": "npm:axios@1.7.4", - "data": { - "version": "1.7.4", - "packageName": "axios", - "hash": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==" - } - }, - "npm:axios@1.7.7": { - "type": "npm", - "name": "npm:axios@1.7.7", - "data": { - "version": "1.7.7", - "packageName": "axios", - "hash": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==" - } - }, - "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-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.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.1.0", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==" - } - }, - "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:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" - } - }, - "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:better-path-resolve": { - "type": "npm", - "name": "npm:better-path-resolve", - "data": { - "version": "1.0.0", - "packageName": "better-path-resolve", - "hash": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==" - } - }, - "npm:big-integer": { - "type": "npm", - "name": "npm:big-integer", - "data": { - "version": "1.6.52", - "packageName": "big-integer", - "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:binary": { - "type": "npm", - "name": "npm:binary", - "data": { - "version": "0.3.0", - "packageName": "binary", - "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" - } - }, - "npm:binaryextensions": { - "type": "npm", - "name": "npm:binaryextensions", - "data": { - "version": "4.19.0", - "packageName": "binaryextensions", - "hash": "sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.4.7", - "packageName": "bluebird", - "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "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:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:breakword": { - "type": "npm", - "name": "npm:breakword", - "data": { - "version": "1.0.6", - "packageName": "breakword", - "hash": "sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==" - } - }, - "npm:browser-resolve": { - "type": "npm", - "name": "npm:browser-resolve", - "data": { - "version": "1.11.3", - "packageName": "browser-resolve", - "hash": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.24.0", - "packageName": "browserslist", - "hash": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==" - } - }, - "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:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:buffer-indexof-polyfill": { - "type": "npm", - "name": "npm:buffer-indexof-polyfill", - "data": { - "version": "1.0.2", - "packageName": "buffer-indexof-polyfill", - "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffers": { - "type": "npm", - "name": "npm:buffers", - "data": { - "version": "0.1.1", - "packageName": "buffers", - "hash": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==" - } - }, - "npm:builtins@1.0.3": { - "type": "npm", - "name": "npm:builtins@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "builtins", - "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.1.0", - "packageName": "builtins", - "hash": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==" - } - }, - "npm:byte-size": { - "type": "npm", - "name": "npm:byte-size", - "data": { - "version": "8.1.1", - "packageName": "byte-size", - "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" - } - }, - "npm:cacache@16.1.3": { - "type": "npm", - "name": "npm:cacache@16.1.3", - "data": { - "version": "16.1.3", - "packageName": "cacache", - "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "17.1.4", - "packageName": "cacache", - "hash": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.3.0", - "packageName": "cachedir", - "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" - } - }, - "npm:caching-transform": { - "type": "npm", - "name": "npm:caching-transform", - "data": { - "version": "4.0.0", - "packageName": "caching-transform", - "hash": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.7", - "packageName": "call-bind", - "hash": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==" - } - }, - "npm:call-me-maybe": { - "type": "npm", - "name": "npm:call-me-maybe", - "data": { - "version": "1.0.2", - "packageName": "call-me-maybe", - "hash": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase-keys": { - "type": "npm", - "name": "npm:camelcase-keys", - "data": { - "version": "6.2.2", - "packageName": "camelcase-keys", - "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" - } - }, - "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-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001667", - "packageName": "caniuse-lite", - "hash": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - } - }, - "npm:chai": { - "type": "npm", - "name": "npm:chai", - "data": { - "version": "4.2.0", - "packageName": "chai", - "hash": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==" - } - }, - "npm:chainsaw": { - "type": "npm", - "name": "npm:chainsaw", - "data": { - "version": "0.1.0", - "packageName": "chainsaw", - "hash": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk@4.1.0": { - "type": "npm", - "name": "npm:chalk@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "chalk", - "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" - } - }, - "npm:chalk@4.1.2": { - "type": "npm", - "name": "npm:chalk@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "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: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-error": { - "type": "npm", - "name": "npm:check-error", - "data": { - "version": "1.0.3", - "packageName": "check-error", - "hash": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==" - } - }, - "npm:chevrotain@10.4.2": { - "type": "npm", - "name": "npm:chevrotain@10.4.2", - "data": { - "version": "10.4.2", - "packageName": "chevrotain", - "hash": "sha512-gzF5GxE0Ckti5kZVuKEZycLntB5X2aj9RVY0r4/220GwQjdnljU+/t3kP74/FMWC7IzCDDEjQ9wsFUf0WCdSHg==" - } - }, - "npm:chevrotain": { - "type": "npm", - "name": "npm:chevrotain", - "data": { - "version": "7.0.1", - "packageName": "chevrotain", - "hash": "sha512-B/44jrdw5GAzy483LEeVSgXSX0qOYM8lUd3l5+yf6Vl6OQjEUCm2BUiYbHRCIK6xCEvCLAFe1kj8uyV6+zdaVw==" - } - }, - "npm:chevrotain@7.1.1": { - "type": "npm", - "name": "npm:chevrotain@7.1.1", - "data": { - "version": "7.1.1", - "packageName": "chevrotain", - "hash": "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==" - } - }, - "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.4", - "packageName": "chrome-trace-event", - "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "cjs-module-lexer", - "hash": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:cli-color": { - "type": "npm", - "name": "npm:cli-color", - "data": { - "version": "2.0.3", - "packageName": "cli-color", - "hash": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==" - } - }, - "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-spinners@2.9.2": { - "type": "npm", - "name": "npm:cli-spinners@2.9.2", - "data": { - "version": "2.9.2", - "packageName": "cli-spinners", - "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - } - }, - "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-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - } - }, - "npm:cliui@6.0.0": { - "type": "npm", - "name": "npm:cliui@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cliui", - "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" - } - }, - "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: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:clone-buffer": { - "type": "npm", - "name": "npm:clone-buffer", - "data": { - "version": "1.0.0", - "packageName": "clone-buffer", - "hash": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone-stats": { - "type": "npm", - "name": "npm:clone-stats", - "data": { - "version": "1.0.0", - "packageName": "clone-stats", - "hash": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" - } - }, - "npm:clone@1.0.4": { - "type": "npm", - "name": "npm:clone@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "2.1.2", - "packageName": "clone", - "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" - } - }, - "npm:cloneable-readable": { - "type": "npm", - "name": "npm:cloneable-readable", - "data": { - "version": "1.1.3", - "packageName": "cloneable-readable", - "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" - } - }, - "npm:cls-hooked": { - "type": "npm", - "name": "npm:cls-hooked", - "data": { - "version": "4.2.2", - "packageName": "cls-hooked", - "hash": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==" - } - }, - "npm:cmd-shim": { - "type": "npm", - "name": "npm:cmd-shim", - "data": { - "version": "6.0.1", - "packageName": "cmd-shim", - "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "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: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-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-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "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-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.9.1", - "packageName": "color-string", - "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" - } - }, - "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:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "3.2.1", - "packageName": "color", - "hash": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:colorspace": { - "type": "npm", - "name": "npm:colorspace", - "data": { - "version": "1.1.4", - "packageName": "colorspace", - "hash": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==" - } - }, - "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@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:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:comment-json": { - "type": "npm", - "name": "npm:comment-json", - "data": { - "version": "4.2.5", - "packageName": "comment-json", - "hash": "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==" - } - }, - "npm:commitizen": { - "type": "npm", - "name": "npm:commitizen", - "data": { - "version": "4.3.1", - "packageName": "commitizen", - "hash": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==" - } - }, - "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: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": "2.0.0", - "packageName": "concat-stream", - "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" - } - }, - "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:continuation-local-storage": { - "type": "npm", - "name": "npm:continuation-local-storage", - "data": { - "version": "3.2.1", - "packageName": "continuation-local-storage", - "hash": "sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==" - } - }, - "npm:conventional-changelog-angular@5.0.13": { - "type": "npm", - "name": "npm:conventional-changelog-angular@5.0.13", - "data": { - "version": "5.0.13", - "packageName": "conventional-changelog-angular", - "hash": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==" - } - }, - "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-atom": { - "type": "npm", - "name": "npm:conventional-changelog-atom", - "data": { - "version": "2.0.8", - "packageName": "conventional-changelog-atom", - "hash": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==" - } - }, - "npm:conventional-changelog-cli": { - "type": "npm", - "name": "npm:conventional-changelog-cli", - "data": { - "version": "2.1.1", - "packageName": "conventional-changelog-cli", - "hash": "sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==" - } - }, - "npm:conventional-changelog-codemirror": { - "type": "npm", - "name": "npm:conventional-changelog-codemirror", - "data": { - "version": "2.0.8", - "packageName": "conventional-changelog-codemirror", - "hash": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==" - } - }, - "npm:conventional-changelog-conventionalcommits": { - "type": "npm", - "name": "npm:conventional-changelog-conventionalcommits", - "data": { - "version": "4.6.3", - "packageName": "conventional-changelog-conventionalcommits", - "hash": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==" - } - }, - "npm:conventional-changelog-core@4.2.4": { - "type": "npm", - "name": "npm:conventional-changelog-core@4.2.4", - "data": { - "version": "4.2.4", - "packageName": "conventional-changelog-core", - "hash": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==" - } - }, - "npm:conventional-changelog-core": { - "type": "npm", - "name": "npm:conventional-changelog-core", - "data": { - "version": "5.0.1", - "packageName": "conventional-changelog-core", - "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" - } - }, - "npm:conventional-changelog-ember": { - "type": "npm", - "name": "npm:conventional-changelog-ember", - "data": { - "version": "2.0.9", - "packageName": "conventional-changelog-ember", - "hash": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==" - } - }, - "npm:conventional-changelog-eslint": { - "type": "npm", - "name": "npm:conventional-changelog-eslint", - "data": { - "version": "3.0.9", - "packageName": "conventional-changelog-eslint", - "hash": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==" - } - }, - "npm:conventional-changelog-express": { - "type": "npm", - "name": "npm:conventional-changelog-express", - "data": { - "version": "2.0.6", - "packageName": "conventional-changelog-express", - "hash": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==" - } - }, - "npm:conventional-changelog-jquery": { - "type": "npm", - "name": "npm:conventional-changelog-jquery", - "data": { - "version": "3.0.11", - "packageName": "conventional-changelog-jquery", - "hash": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==" - } - }, - "npm:conventional-changelog-jshint": { - "type": "npm", - "name": "npm:conventional-changelog-jshint", - "data": { - "version": "2.0.9", - "packageName": "conventional-changelog-jshint", - "hash": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==" - } - }, - "npm:conventional-changelog-preset-loader": { - "type": "npm", - "name": "npm:conventional-changelog-preset-loader", - "data": { - "version": "2.3.4", - "packageName": "conventional-changelog-preset-loader", - "hash": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==" - } - }, - "npm:conventional-changelog-preset-loader@3.0.0": { - "type": "npm", - "name": "npm:conventional-changelog-preset-loader@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "conventional-changelog-preset-loader", - "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" - } - }, - "npm:conventional-changelog-writer@5.0.1": { - "type": "npm", - "name": "npm:conventional-changelog-writer@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==" - } - }, - "npm:conventional-changelog-writer": { - "type": "npm", - "name": "npm:conventional-changelog-writer", - "data": { - "version": "6.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" - } - }, - "npm:conventional-changelog": { - "type": "npm", - "name": "npm:conventional-changelog", - "data": { - "version": "3.1.25", - "packageName": "conventional-changelog", - "hash": "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==" - } - }, - "npm:conventional-commit-types": { - "type": "npm", - "name": "npm:conventional-commit-types", - "data": { - "version": "3.0.0", - "packageName": "conventional-commit-types", - "hash": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==" - } - }, - "npm:conventional-commits-filter@2.0.7": { - "type": "npm", - "name": "npm:conventional-commits-filter@2.0.7", - "data": { - "version": "2.0.7", - "packageName": "conventional-commits-filter", - "hash": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==" - } - }, - "npm:conventional-commits-filter": { - "type": "npm", - "name": "npm:conventional-commits-filter", - "data": { - "version": "3.0.0", - "packageName": "conventional-commits-filter", - "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" - } - }, - "npm:conventional-commits-parser@3.2.4": { - "type": "npm", - "name": "npm:conventional-commits-parser@3.2.4", - "data": { - "version": "3.2.4", - "packageName": "conventional-commits-parser", - "hash": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==" - } - }, - "npm:conventional-commits-parser": { - "type": "npm", - "name": "npm:conventional-commits-parser", - "data": { - "version": "4.0.0", - "packageName": "conventional-commits-parser", - "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" - } - }, - "npm:conventional-recommended-bump": { - "type": "npm", - "name": "npm:conventional-recommended-bump", - "data": { - "version": "7.0.1", - "packageName": "conventional-recommended-bump", - "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" - } - }, - "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: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:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.38.1", - "packageName": "core-js", - "hash": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==" - } - }, - "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:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.3", - "packageName": "core-util-is", - "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - } - }, - "npm:cosmiconfig-typescript-loader": { - "type": "npm", - "name": "npm:cosmiconfig-typescript-loader", - "data": { - "version": "5.0.0", - "packageName": "cosmiconfig-typescript-loader", - "hash": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==" - } - }, - "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": "8.3.6", - "packageName": "cosmiconfig", - "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" - } - }, - "npm:cosmiconfig@9.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" - } - }, - "npm:coveralls": { - "type": "npm", - "name": "npm:coveralls", - "data": { - "version": "3.1.0", - "packageName": "coveralls", - "hash": "sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:cross-env": { - "type": "npm", - "name": "npm:cross-env", - "data": { - "version": "7.0.3", - "packageName": "cross-env", - "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" - } - }, - "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:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "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:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:csv-generate": { - "type": "npm", - "name": "npm:csv-generate", - "data": { - "version": "3.4.3", - "packageName": "csv-generate", - "hash": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==" - } - }, - "npm:csv-parse": { - "type": "npm", - "name": "npm:csv-parse", - "data": { - "version": "4.16.3", - "packageName": "csv-parse", - "hash": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==" - } - }, - "npm:csv-stringify": { - "type": "npm", - "name": "npm:csv-stringify", - "data": { - "version": "5.6.5", - "packageName": "csv-stringify", - "hash": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==" - } - }, - "npm:csv": { - "type": "npm", - "name": "npm:csv", - "data": { - "version": "5.5.3", - "packageName": "csv", - "hash": "sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==" - } - }, - "npm:currently-unhandled": { - "type": "npm", - "name": "npm:currently-unhandled", - "data": { - "version": "0.4.1", - "packageName": "currently-unhandled", - "hash": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==" - } - }, - "npm:cz-conventional-changelog": { - "type": "npm", - "name": "npm:cz-conventional-changelog", - "data": { - "version": "3.3.0", - "packageName": "cz-conventional-changelog", - "hash": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==" - } - }, - "npm:d": { - "type": "npm", - "name": "npm:d", - "data": { - "version": "1.0.1", - "packageName": "d", - "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" - } - }, - "npm:dargs": { - "type": "npm", - "name": "npm:dargs", - "data": { - "version": "7.0.0", - "packageName": "dargs", - "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" - } - }, - "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:data-view-buffer": { - "type": "npm", - "name": "npm:data-view-buffer", - "data": { - "version": "1.0.1", - "packageName": "data-view-buffer", - "hash": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==" - } - }, - "npm:data-view-byte-length": { - "type": "npm", - "name": "npm:data-view-byte-length", - "data": { - "version": "1.0.1", - "packageName": "data-view-byte-length", - "hash": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==" - } - }, - "npm:data-view-byte-offset": { - "type": "npm", - "name": "npm:data-view-byte-offset", - "data": { - "version": "1.0.0", - "packageName": "data-view-byte-offset", - "hash": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==" - } - }, - "npm:date-format": { - "type": "npm", - "name": "npm:date-format", - "data": { - "version": "2.1.0", - "packageName": "date-format", - "hash": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==" - } - }, - "npm:dateformat": { - "type": "npm", - "name": "npm:dateformat", - "data": { - "version": "3.0.3", - "packageName": "dateformat", - "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" - } - }, - "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@4.3.4": { - "type": "npm", - "name": "npm:debug@4.3.4", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.7", - "packageName": "debug", - "hash": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==" - } - }, - "npm:decamelize-keys": { - "type": "npm", - "name": "npm:decamelize-keys", - "data": { - "version": "1.1.1", - "packageName": "decamelize-keys", - "hash": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==" - } - }, - "npm:decamelize": { - "type": "npm", - "name": "npm:decamelize", - "data": { - "version": "1.2.0", - "packageName": "decamelize", - "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "0.7.0", - "packageName": "dedent", - "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" - } - }, - "npm:dedent@1.5.3": { - "type": "npm", - "name": "npm:dedent@1.5.3", - "data": { - "version": "1.5.3", - "packageName": "dedent", - "hash": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==" - } - }, - "npm:deep-eql": { - "type": "npm", - "name": "npm:deep-eql", - "data": { - "version": "3.0.1", - "packageName": "deep-eql", - "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" - } - }, - "npm:deep-equal-in-any-order": { - "type": "npm", - "name": "npm:deep-equal-in-any-order", - "data": { - "version": "1.0.28", - "packageName": "deep-equal-in-any-order", - "hash": "sha512-qq3jffpGmAG9kGpZGKusjRwoGxmFgIqNW076HQmV9rNdrFsgTcpuCyp6dBhzdVCWgQDkgRmvZLYAilV4u2BsfQ==" - } - }, - "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-freeze-strict": { - "type": "npm", - "name": "npm:deep-freeze-strict", - "data": { - "version": "1.1.1", - "packageName": "deep-freeze-strict", - "hash": "sha512-QemROZMM2IvhAcCFvahdX2Vbm4S/txeq5rFYU9fh4mQP79WTMW5c/HkQ2ICl1zuzcDZdPZ6zarDxQeQMsVYoNA==" - } - }, - "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-require-extensions": { - "type": "npm", - "name": "npm:default-require-extensions", - "data": { - "version": "3.0.1", - "packageName": "default-require-extensions", - "hash": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.4", - "packageName": "define-data-property", - "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" - } - }, - "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:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - } - }, - "npm:deprecation": { - "type": "npm", - "name": "npm:deprecation", - "data": { - "version": "2.3.1", - "packageName": "deprecation", - "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - } - }, - "npm:detect-file": { - "type": "npm", - "name": "npm:detect-file", - "data": { - "version": "1.0.0", - "packageName": "detect-file", - "hash": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==" - } - }, - "npm:detect-indent@5.0.0": { - "type": "npm", - "name": "npm:detect-indent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "detect-indent", - "hash": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==" - } - }, - "npm:detect-indent": { - "type": "npm", - "name": "npm:detect-indent", - "data": { - "version": "6.1.0", - "packageName": "detect-indent", - "hash": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:diagnostic-channel-publishers": { - "type": "npm", - "name": "npm:diagnostic-channel-publishers", - "data": { - "version": "1.0.8", - "packageName": "diagnostic-channel-publishers", - "hash": "sha512-HmSm9hXxSPxA9BaLGY98QU1zsdjeCk113KjAYGPCen1ZP6mhVaTPzHd6UYv5r21DnWANi+f+NyPOHruGT9jpqQ==" - } - }, - "npm:diagnostic-channel": { - "type": "npm", - "name": "npm:diagnostic-channel", - "data": { - "version": "1.1.1", - "packageName": "diagnostic-channel", - "hash": "sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==" - } - }, - "npm:diff-sequences@25.2.6": { - "type": "npm", - "name": "npm:diff-sequences@25.2.6", - "data": { - "version": "25.2.6", - "packageName": "diff-sequences", - "hash": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "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:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:dot-prop": { - "type": "npm", - "name": "npm:dot-prop", - "data": { - "version": "5.3.0", - "packageName": "dot-prop", - "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - } - }, - "npm:dotenv-expand@10.0.0": { - "type": "npm", - "name": "npm:dotenv-expand@10.0.0", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "11.0.6", - "packageName": "dotenv-expand", - "hash": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==" - } - }, - "npm:dotenv@16.3.2": { - "type": "npm", - "name": "npm:dotenv@16.3.2", - "data": { - "version": "16.3.2", - "packageName": "dotenv", - "hash": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "16.4.5", - "packageName": "dotenv", - "hash": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" - } - }, - "npm:duplexer2": { - "type": "npm", - "name": "npm:duplexer2", - "data": { - "version": "0.1.4", - "packageName": "duplexer2", - "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "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: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.5.33", - "packageName": "electron-to-chromium", - "hash": "sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==" - } - }, - "npm:emitter-listener": { - "type": "npm", - "name": "npm:emitter-listener", - "data": { - "version": "1.1.2", - "packageName": "emitter-listener", - "hash": "sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "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:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:enabled": { - "type": "npm", - "name": "npm:enabled", - "data": { - "version": "2.0.0", - "packageName": "enabled", - "hash": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - } - }, - "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.17.1", - "packageName": "enhanced-resolve", - "hash": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==" - } - }, - "npm:enquirer@2.3.6": { - "type": "npm", - "name": "npm:enquirer@2.3.6", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.4.1", - "packageName": "enquirer", - "hash": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.3.0", - "packageName": "entities", - "hash": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" - } - }, - "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-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:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-stack-parser": { - "type": "npm", - "name": "npm:error-stack-parser", - "data": { - "version": "2.1.4", - "packageName": "error-stack-parser", - "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.23.3", - "packageName": "es-abstract", - "hash": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==" - } - }, - "npm:es-define-property": { - "type": "npm", - "name": "npm:es-define-property", - "data": { - "version": "1.0.0", - "packageName": "es-define-property", - "hash": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==" - } - }, - "npm:es-errors": { - "type": "npm", - "name": "npm:es-errors", - "data": { - "version": "1.3.0", - "packageName": "es-errors", - "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.5.4", - "packageName": "es-module-lexer", - "hash": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" - } - }, - "npm:es-object-atoms": { - "type": "npm", - "name": "npm:es-object-atoms", - "data": { - "version": "1.0.0", - "packageName": "es-object-atoms", - "hash": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.0.3", - "packageName": "es-set-tostringtag", - "hash": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.0.2", - "packageName": "es-shim-unscopables", - "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:es5-ext": { - "type": "npm", - "name": "npm:es5-ext", - "data": { - "version": "0.10.62", - "packageName": "es5-ext", - "hash": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==" - } - }, - "npm:es6-error": { - "type": "npm", - "name": "npm:es6-error", - "data": { - "version": "4.1.1", - "packageName": "es6-error", - "hash": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==" - } - }, - "npm:es6-iterator": { - "type": "npm", - "name": "npm:es6-iterator", - "data": { - "version": "2.0.3", - "packageName": "es6-iterator", - "hash": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==" - } - }, - "npm:es6-symbol": { - "type": "npm", - "name": "npm:es6-symbol", - "data": { - "version": "3.1.3", - "packageName": "es6-symbol", - "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" - } - }, - "npm:es6-weak-map": { - "type": "npm", - "name": "npm:es6-weak-map", - "data": { - "version": "2.0.3", - "packageName": "es6-weak-map", - "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.17.12", - "packageName": "esbuild", - "hash": "sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.2.0", - "packageName": "escalade", - "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "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:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "7.2.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.9", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" - } - }, - "npm:eslint-import-resolver-typescript": { - "type": "npm", - "name": "npm:eslint-import-resolver-typescript", - "data": { - "version": "3.6.1", - "packageName": "eslint-import-resolver-typescript", - "hash": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.12.0", - "packageName": "eslint-module-utils", - "hash": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==" - } - }, - "npm:eslint-plugin-eslint-comments": { - "type": "npm", - "name": "npm:eslint-plugin-eslint-comments", - "data": { - "version": "3.2.0", - "packageName": "eslint-plugin-eslint-comments", - "hash": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.31.0", - "packageName": "eslint-plugin-import", - "hash": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:eslint-utils@3.0.0": { - "type": "npm", - "name": "npm:eslint-utils@3.0.0", - "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": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "2.1.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "7.18.0", - "packageName": "eslint", - "hash": "sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==" - } - }, - "npm:esm": { - "type": "npm", - "name": "npm:esm", - "data": { - "version": "3.2.25", - "packageName": "esm", - "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "7.3.1", - "packageName": "espree", - "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" - } - }, - "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": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estraverse@5.3.0": { - "type": "npm", - "name": "npm:estraverse@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "2.0.2", - "packageName": "estree-walker", - "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:event-emitter": { - "type": "npm", - "name": "npm:event-emitter", - "data": { - "version": "0.3.5", - "packageName": "event-emitter", - "hash": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==" - } - }, - "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: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.0.0", - "packageName": "execa", - "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" - } - }, - "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:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expand-tilde": { - "type": "npm", - "name": "npm:expand-tilde", - "data": { - "version": "2.0.2", - "packageName": "expand-tilde", - "hash": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==" - } - }, - "npm:expect@25.5.0": { - "type": "npm", - "name": "npm:expect@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "expect", - "hash": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==" - } - }, - "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:ext": { - "type": "npm", - "name": "npm:ext", - "data": { - "version": "1.7.0", - "packageName": "ext", - "hash": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:extendable-error": { - "type": "npm", - "name": "npm:extendable-error", - "data": { - "version": "0.1.7", - "packageName": "extendable-error", - "hash": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.1.0", - "packageName": "external-editor", - "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" - } - }, - "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-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "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-safe-stringify": { - "type": "npm", - "name": "npm:fast-safe-stringify", - "data": { - "version": "2.0.7", - "packageName": "fast-safe-stringify", - "hash": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" - } - }, - "npm:fast-uri": { - "type": "npm", - "name": "npm:fast-uri", - "data": { - "version": "3.0.1", - "packageName": "fast-uri", - "hash": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" - } - }, - "npm:fast-xml-parser": { - "type": "npm", - "name": "npm:fast-xml-parser", - "data": { - "version": "4.2.7", - "packageName": "fast-xml-parser", - "hash": "sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.16.0", - "packageName": "fastq", - "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fecha": { - "type": "npm", - "name": "npm:fecha", - "data": { - "version": "4.2.3", - "packageName": "fecha", - "hash": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "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: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:fill-keys": { - "type": "npm", - "name": "npm:fill-keys", - "data": { - "version": "1.0.2", - "packageName": "fill-keys", - "hash": "sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "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-node-modules": { - "type": "npm", - "name": "npm:find-node-modules", - "data": { - "version": "2.1.3", - "packageName": "find-node-modules", - "hash": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==" - } - }, - "npm:find-root": { - "type": "npm", - "name": "npm:find-root", - "data": { - "version": "1.1.0", - "packageName": "find-root", - "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - } - }, - "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": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "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-yarn-workspace-root2": { - "type": "npm", - "name": "npm:find-yarn-workspace-root2", - "data": { - "version": "1.2.16", - "packageName": "find-yarn-workspace-root2", - "hash": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==" - } - }, - "npm:findit2": { - "type": "npm", - "name": "npm:findit2", - "data": { - "version": "2.2.3", - "packageName": "findit2", - "hash": "sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog==" - } - }, - "npm:findup-sync": { - "type": "npm", - "name": "npm:findup-sync", - "data": { - "version": "4.0.0", - "packageName": "findup-sync", - "hash": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==" - } - }, - "npm:first-chunk-stream": { - "type": "npm", - "name": "npm:first-chunk-stream", - "data": { - "version": "2.0.0", - "packageName": "first-chunk-stream", - "hash": "sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.9", - "packageName": "flatted", - "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" - } - }, - "npm:fn.name": { - "type": "npm", - "name": "npm:fn.name", - "data": { - "version": "1.1.0", - "packageName": "fn.name", - "hash": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.5", - "packageName": "follow-redirects", - "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" - } - }, - "npm:follow-redirects@1.15.9": { - "type": "npm", - "name": "npm:follow-redirects@1.15.9", - "data": { - "version": "1.15.9", - "packageName": "follow-redirects", - "hash": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.3", - "packageName": "for-each", - "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "2.0.0", - "packageName": "foreground-child", - "hash": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==" - } - }, - "npm:foreground-child@3.3.0": { - "type": "npm", - "name": "npm:foreground-child@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "foreground-child", - "hash": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - } - }, - "npm:form-data@2.3.3": { - "type": "npm", - "name": "npm:form-data@2.3.3", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "3.0.1", - "packageName": "form-data", - "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" - } - }, - "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:fromentries": { - "type": "npm", - "name": "npm:fromentries", - "data": { - "version": "1.3.2", - "packageName": "fromentries", - "hash": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==" - } - }, - "npm:front-matter": { - "type": "npm", - "name": "npm:front-matter", - "data": { - "version": "4.0.2", - "packageName": "front-matter", - "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" - } - }, - "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-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra@11.2.0": { - "type": "npm", - "name": "npm:fs-extra@11.2.0", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:fs-extra@7.0.1": { - "type": "npm", - "name": "npm:fs-extra@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "fs-extra", - "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" - } - }, - "npm:fs-extra@8.1.0": { - "type": "npm", - "name": "npm:fs-extra@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "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-minipass@2.1.0": { - "type": "npm", - "name": "npm:fs-minipass@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "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:fstream": { - "type": "npm", - "name": "npm:fstream", - "data": { - "version": "1.0.12", - "packageName": "fstream", - "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" - } - }, - "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: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: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-func-name": { - "type": "npm", - "name": "npm:get-func-name", - "data": { - "version": "2.0.2", - "packageName": "get-func-name", - "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.4", - "packageName": "get-intrinsic", - "hash": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==" - } - }, - "npm:get-own-enumerable-property-symbols": { - "type": "npm", - "name": "npm:get-own-enumerable-property-symbols", - "data": { - "version": "3.0.2", - "packageName": "get-own-enumerable-property-symbols", - "hash": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" - } - }, - "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-pkg-repo": { - "type": "npm", - "name": "npm:get-pkg-repo", - "data": { - "version": "4.2.1", - "packageName": "get-pkg-repo", - "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "5.1.1", - "packageName": "get-port", - "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" - } - }, - "npm:get-stdin": { - "type": "npm", - "name": "npm:get-stdin", - "data": { - "version": "8.0.0", - "packageName": "get-stdin", - "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" - } - }, - "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": "6.0.0", - "packageName": "get-stream", - "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" - } - }, - "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-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.2", - "packageName": "get-symbol-description", - "hash": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==" - } - }, - "npm:get-tsconfig": { - "type": "npm", - "name": "npm:get-tsconfig", - "data": { - "version": "4.8.1", - "packageName": "get-tsconfig", - "hash": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" - } - }, - "npm:git-raw-commits": { - "type": "npm", - "name": "npm:git-raw-commits", - "data": { - "version": "2.0.11", - "packageName": "git-raw-commits", - "hash": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==" - } - }, - "npm:git-raw-commits@3.0.0": { - "type": "npm", - "name": "npm:git-raw-commits@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "git-raw-commits", - "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" - } - }, - "npm:git-remote-origin-url": { - "type": "npm", - "name": "npm:git-remote-origin-url", - "data": { - "version": "2.0.0", - "packageName": "git-remote-origin-url", - "hash": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==" - } - }, - "npm:git-semver-tags@4.1.1": { - "type": "npm", - "name": "npm:git-semver-tags@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "git-semver-tags", - "hash": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==" - } - }, - "npm:git-semver-tags": { - "type": "npm", - "name": "npm:git-semver-tags", - "data": { - "version": "5.0.1", - "packageName": "git-semver-tags", - "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" - } - }, - "npm:git-up": { - "type": "npm", - "name": "npm:git-up", - "data": { - "version": "7.0.0", - "packageName": "git-up", - "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" - } - }, - "npm:git-url-parse": { - "type": "npm", - "name": "npm:git-url-parse", - "data": { - "version": "13.1.0", - "packageName": "git-url-parse", - "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" - } - }, - "npm:gitconfiglocal": { - "type": "npm", - "name": "npm:gitconfiglocal", - "data": { - "version": "1.0.0", - "packageName": "gitconfiglocal", - "hash": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-promise": { - "type": "npm", - "name": "npm:glob-promise", - "data": { - "version": "3.4.0", - "packageName": "glob-promise", - "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" - } - }, - "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:glob@10.4.5": { - "type": "npm", - "name": "npm:glob@10.4.5", - "data": { - "version": "10.4.5", - "packageName": "glob", - "hash": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==" - } - }, - "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": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.1.6", - "packageName": "glob", - "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" - } - }, - "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@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:glob@9.3.5": { - "type": "npm", - "name": "npm:glob@9.3.5", - "data": { - "version": "9.3.5", - "packageName": "glob", - "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" - } - }, - "npm:global-directory": { - "type": "npm", - "name": "npm:global-directory", - "data": { - "version": "4.0.1", - "packageName": "global-directory", - "hash": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "0.1.1", - "packageName": "global-dirs", - "hash": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==" - } - }, - "npm:global-modules": { - "type": "npm", - "name": "npm:global-modules", - "data": { - "version": "1.0.0", - "packageName": "global-modules", - "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" - } - }, - "npm:global-prefix": { - "type": "npm", - "name": "npm:global-prefix", - "data": { - "version": "1.0.2", - "packageName": "global-prefix", - "hash": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==" - } - }, - "npm:globals@11.12.0": { - "type": "npm", - "name": "npm:globals@11.12.0", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "12.4.0", - "packageName": "globals", - "hash": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.4", - "packageName": "globalthis", - "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "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:grapheme-splitter": { - "type": "npm", - "name": "npm:grapheme-splitter", - "data": { - "version": "1.0.4", - "packageName": "grapheme-splitter", - "hash": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.8", - "packageName": "handlebars", - "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" - } - }, - "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:hard-rejection": { - "type": "npm", - "name": "npm:hard-rejection", - "data": { - "version": "2.1.0", - "packageName": "hard-rejection", - "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" - } - }, - "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-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag@4.0.0": { - "type": "npm", - "name": "npm:has-flag@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-own-prop": { - "type": "npm", - "name": "npm:has-own-prop", - "data": { - "version": "2.0.0", - "packageName": "has-own-prop", - "hash": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.2", - "packageName": "has-property-descriptors", - "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.3", - "packageName": "has-proto", - "hash": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" - } - }, - "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.2", - "packageName": "has-tostringtag", - "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" - } - }, - "npm:has-unicode": { - "type": "npm", - "name": "npm:has-unicode", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - } - }, - "npm:hasha": { - "type": "npm", - "name": "npm:hasha", - "data": { - "version": "5.2.2", - "packageName": "hasha", - "hash": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==" - } - }, - "npm:hasown@2.0.0": { - "type": "npm", - "name": "npm:hasown@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.2", - "packageName": "hasown", - "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" - } - }, - "npm:homedir-polyfill": { - "type": "npm", - "name": "npm:homedir-polyfill", - "data": { - "version": "1.0.3", - "packageName": "homedir-polyfill", - "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" - } - }, - "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:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "3.0.8", - "packageName": "hosted-git-info", - "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" - } - }, - "npm:hosted-git-info@4.1.0": { - "type": "npm", - "name": "npm:hosted-git-info@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "hosted-git-info", - "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" - } - }, - "npm:hosted-git-info@6.1.1": { - "type": "npm", - "name": "npm:hosted-git-info@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "hosted-git-info", - "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" - } - }, - "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-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-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "4.0.1", - "packageName": "http-proxy-agent", - "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" - } - }, - "npm:http-proxy-agent@5.0.0": { - "type": "npm", - "name": "npm:http-proxy-agent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.2.0", - "packageName": "http-signature", - "hash": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==" - } - }, - "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:human-id": { - "type": "npm", - "name": "npm:human-id", - "data": { - "version": "1.0.2", - "packageName": "human-id", - "hash": "sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals@2.1.0": { - "type": "npm", - "name": "npm:human-signals@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "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.1", - "packageName": "husky", - "hash": "sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==" - } - }, - "npm:i18next": { - "type": "npm", - "name": "npm:i18next", - "data": { - "version": "19.0.2", - "packageName": "i18next", - "hash": "sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "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:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "5.0.1", - "packageName": "ignore-walk", - "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" - } - }, - "npm:ignore-walk@6.0.5": { - "type": "npm", - "name": "npm:ignore-walk@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "ignore-walk", - "hash": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==" - } - }, - "npm:ignore@4.0.6": { - "type": "npm", - "name": "npm:ignore@4.0.6", - "data": { - "version": "4.0.6", - "packageName": "ignore", - "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.0", - "packageName": "ignore", - "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:import-in-the-middle": { - "type": "npm", - "name": "npm:import-in-the-middle", - "data": { - "version": "1.11.2", - "packageName": "import-in-the-middle", - "hash": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==" - } - }, - "npm:import-local@3.1.0": { - "type": "npm", - "name": "npm:import-local@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.2.0", - "packageName": "import-local", - "hash": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" - } - }, - "npm:import-meta-resolve": { - "type": "npm", - "name": "npm:import-meta-resolve", - "data": { - "version": "4.1.0", - "packageName": "import-meta-resolve", - "hash": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:infer-owner": { - "type": "npm", - "name": "npm:infer-owner", - "data": { - "version": "1.0.4", - "packageName": "infer-owner", - "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - } - }, - "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:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:ini@4.1.1": { - "type": "npm", - "name": "npm:ini@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ini", - "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" - } - }, - "npm:init-package-json": { - "type": "npm", - "name": "npm:init-package-json", - "data": { - "version": "5.0.0", - "packageName": "init-package-json", - "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" - } - }, - "npm:inquirer": { - "type": "npm", - "name": "npm:inquirer", - "data": { - "version": "8.2.5", - "packageName": "inquirer", - "hash": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.7", - "packageName": "internal-slot", - "hash": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==" - } - }, - "npm:interpret": { - "type": "npm", - "name": "npm:interpret", - "data": { - "version": "1.4.0", - "packageName": "interpret", - "hash": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" - } - }, - "npm:intl-messageformat-parser": { - "type": "npm", - "name": "npm:intl-messageformat-parser", - "data": { - "version": "6.1.2", - "packageName": "intl-messageformat-parser", - "hash": "sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==" - } - }, - "npm:ip-address": { - "type": "npm", - "name": "npm:ip-address", - "data": { - "version": "9.0.5", - "packageName": "ip-address", - "hash": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.4", - "packageName": "is-array-buffer", - "hash": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-arrayish@0.3.2": { - "type": "npm", - "name": "npm:is-arrayish@0.3.2", - "data": { - "version": "0.3.2", - "packageName": "is-arrayish", - "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.4", - "packageName": "is-bigint", - "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - } - }, - "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-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-core-module@2.15.1": { - "type": "npm", - "name": "npm:is-core-module@2.15.1", - "data": { - "version": "2.15.1", - "packageName": "is-core-module", - "hash": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==" - } - }, - "npm:is-data-view": { - "type": "npm", - "name": "npm:is-data-view", - "data": { - "version": "1.0.1", - "packageName": "is-data-view", - "hash": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==" - } - }, - "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-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-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-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.3", - "packageName": "is-negative-zero", - "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" - } - }, - "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-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-obj": { - "type": "npm", - "name": "npm:is-obj", - "data": { - "version": "1.0.1", - "packageName": "is-obj", - "hash": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" - } - }, - "npm:is-obj@2.0.0": { - "type": "npm", - "name": "npm:is-obj@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-obj", - "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - } - }, - "npm:is-object": { - "type": "npm", - "name": "npm:is-object", - "data": { - "version": "1.0.2", - "packageName": "is-object", - "hash": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" - } - }, - "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: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-plain-object@5.0.0": { - "type": "npm", - "name": "npm:is-plain-object@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "is-plain-object", - "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" - } - }, - "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-regexp": { - "type": "npm", - "name": "npm:is-regexp", - "data": { - "version": "1.0.0", - "packageName": "is-regexp", - "hash": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.3", - "packageName": "is-shared-array-buffer", - "hash": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==" - } - }, - "npm:is-ssh": { - "type": "npm", - "name": "npm:is-ssh", - "data": { - "version": "1.4.0", - "packageName": "is-ssh", - "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.0", - "packageName": "is-stream", - "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - } - }, - "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-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-subdir": { - "type": "npm", - "name": "npm:is-subdir", - "data": { - "version": "1.2.0", - "packageName": "is-subdir", - "hash": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==" - } - }, - "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": "1.0.1", - "packageName": "is-text-path", - "hash": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.13", - "packageName": "is-typed-array", - "hash": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==" - } - }, - "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-utf8": { - "type": "npm", - "name": "npm:is-utf8", - "data": { - "version": "0.2.1", - "packageName": "is-utf8", - "hash": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" - } - }, - "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-windows": { - "type": "npm", - "name": "npm:is-windows", - "data": { - "version": "1.0.2", - "packageName": "is-windows", - "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "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": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:isbinaryfile": { - "type": "npm", - "name": "npm:isbinaryfile", - "data": { - "version": "4.0.10", - "packageName": "isbinaryfile", - "hash": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - } - }, - "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-hook": { - "type": "npm", - "name": "npm:istanbul-lib-hook", - "data": { - "version": "3.0.0", - "packageName": "istanbul-lib-hook", - "hash": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "4.0.3", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==" - } - }, - "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@6.0.3": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==" - } - }, - "npm:istanbul-lib-processinfo": { - "type": "npm", - "name": "npm:istanbul-lib-processinfo", - "data": { - "version": "2.0.3", - "packageName": "istanbul-lib-processinfo", - "hash": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==" - } - }, - "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.7", - "packageName": "istanbul-reports", - "hash": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "3.4.3", - "packageName": "jackspeak", - "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.7", - "packageName": "jake", - "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" - } - }, - "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: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.5.0", - "packageName": "jest-config", - "hash": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==" - } - }, - "npm:jest-config@29.7.0": { - "type": "npm", - "name": "npm:jest-config@29.7.0", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff@25.5.0": { - "type": "npm", - "name": "npm:jest-diff@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "jest-diff", - "hash": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==" - } - }, - "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.5.0", - "packageName": "jest-environment-node", - "hash": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==" - } - }, - "npm:jest-environment-node@29.7.0": { - "type": "npm", - "name": "npm:jest-environment-node@29.7.0", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-esm-transformer": { - "type": "npm", - "name": "npm:jest-esm-transformer", - "data": { - "version": "1.0.0", - "packageName": "jest-esm-transformer", - "hash": "sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==" - } - }, - "npm:jest-extended": { - "type": "npm", - "name": "npm:jest-extended", - "data": { - "version": "3.2.3", - "packageName": "jest-extended", - "hash": "sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA==" - } - }, - "npm:jest-get-type@25.2.6": { - "type": "npm", - "name": "npm:jest-get-type@25.2.6", - "data": { - "version": "25.2.6", - "packageName": "jest-get-type", - "hash": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==" - } - }, - "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-junit": { - "type": "npm", - "name": "npm:jest-junit", - "data": { - "version": "15.0.0", - "packageName": "jest-junit", - "hash": "sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==" - } - }, - "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@25.5.0": { - "type": "npm", - "name": "npm:jest-matcher-utils@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==" - } - }, - "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@25.5.0": { - "type": "npm", - "name": "npm:jest-message-util@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "jest-message-util", - "hash": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==" - } - }, - "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-regex-util@25.2.6": { - "type": "npm", - "name": "npm:jest-regex-util@25.2.6", - "data": { - "version": "25.2.6", - "packageName": "jest-regex-util", - "hash": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==" - } - }, - "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-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:jest-resolve@25.5.1": { - "type": "npm", - "name": "npm:jest-resolve@25.5.1", - "data": { - "version": "25.5.1", - "packageName": "jest-resolve", - "hash": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "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": "25.5.1", - "packageName": "jest-snapshot", - "hash": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==" - } - }, - "npm:jest-snapshot@29.7.0": { - "type": "npm", - "name": "npm:jest-snapshot@29.7.0", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-sonar": { - "type": "npm", - "name": "npm:jest-sonar", - "data": { - "version": "0.2.16", - "packageName": "jest-sonar", - "hash": "sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==" - } - }, - "npm:jest-specific-snapshot": { - "type": "npm", - "name": "npm:jest-specific-snapshot", - "data": { - "version": "3.0.0", - "packageName": "jest-specific-snapshot", - "hash": "sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==" - } - }, - "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@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:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.5.0", - "packageName": "jest", - "hash": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "1.21.6", - "packageName": "jiti", - "hash": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "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:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - } - }, - "npm:jsbn@1.1.0": { - "type": "npm", - "name": "npm:jsbn@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "jsbn", - "hash": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" - } - }, - "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": "3.0.2", - "packageName": "jsesc", - "hash": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" - } - }, - "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@2.3.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "3.0.2", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==" - } - }, - "npm:json-schema-ref-parser": { - "type": "npm", - "name": "npm:json-schema-ref-parser", - "data": { - "version": "9.0.9", - "packageName": "json-schema-ref-parser", - "hash": "sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==" - } - }, - "npm:json-schema-to-typescript": { - "type": "npm", - "name": "npm:json-schema-to-typescript", - "data": { - "version": "10.0.3", - "packageName": "json-schema-to-typescript", - "hash": "sha512-CKM7XZqjKhsC96RWTdczTZc5KSv1PfgwGjprf7poO0osmgKmFp2Sj10jCi96gu73naVLJtrX8x7nAf9Vq2fl2Q==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse@1.0.0": { - "type": "npm", - "name": "npm:json-schema-traverse@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "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-stable-stringify": { - "type": "npm", - "name": "npm:json-stable-stringify", - "data": { - "version": "1.1.1", - "packageName": "json-stable-stringify", - "hash": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==" - } - }, - "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@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: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@4.0.0": { - "type": "npm", - "name": "npm:jsonfile@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonify": { - "type": "npm", - "name": "npm:jsonify", - "data": { - "version": "0.0.1", - "packageName": "jsonify", - "hash": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "1.4.2", - "packageName": "jsprim", - "hash": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:klaw-sync": { - "type": "npm", - "name": "npm:klaw-sync", - "data": { - "version": "6.0.0", - "packageName": "klaw-sync", - "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" - } - }, - "npm:kleur@3.0.3": { - "type": "npm", - "name": "npm:kleur@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:kuler": { - "type": "npm", - "name": "npm:kuler", - "data": { - "version": "2.0.0", - "packageName": "kuler", - "hash": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - } - }, - "npm:lcov-parse": { - "type": "npm", - "name": "npm:lcov-parse", - "data": { - "version": "1.0.0", - "packageName": "lcov-parse", - "hash": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==" - } - }, - "npm:lerna": { - "type": "npm", - "name": "npm:lerna", - "data": { - "version": "7.4.2", - "packageName": "lerna", - "hash": "sha512-gxavfzHfJ4JL30OvMunmlm4Anw7d7Tq6tdVHzUukLdS9nWnxCN/QB21qR+VJYp5tcyXogHKbdUEGh6qmeyzxSA==" - } - }, - "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:libnpmaccess": { - "type": "npm", - "name": "npm:libnpmaccess", - "data": { - "version": "7.0.2", - "packageName": "libnpmaccess", - "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" - } - }, - "npm:libnpmpublish": { - "type": "npm", - "name": "npm:libnpmpublish", - "data": { - "version": "7.3.0", - "packageName": "libnpmpublish", - "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" - } - }, - "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: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:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "10.5.3", - "packageName": "lint-staged", - "hash": "sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==" - } - }, - "npm:listenercount": { - "type": "npm", - "name": "npm:listenercount", - "data": { - "version": "1.0.1", - "packageName": "listenercount", - "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:load-json-file@4.0.0": { - "type": "npm", - "name": "npm:load-json-file@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "load-json-file", - "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" - } - }, - "npm:load-json-file": { - "type": "npm", - "name": "npm:load-json-file", - "data": { - "version": "6.2.0", - "packageName": "load-json-file", - "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" - } - }, - "npm:load-yaml-file": { - "type": "npm", - "name": "npm:load-yaml-file", - "data": { - "version": "0.2.0", - "packageName": "load-yaml-file", - "hash": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "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": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "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:lodash.flattendeep": { - "type": "npm", - "name": "npm:lodash.flattendeep", - "data": { - "version": "4.4.0", - "packageName": "lodash.flattendeep", - "hash": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" - } - }, - "npm:lodash.ismatch": { - "type": "npm", - "name": "npm:lodash.ismatch", - "data": { - "version": "4.4.0", - "packageName": "lodash.ismatch", - "hash": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==" - } - }, - "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.map": { - "type": "npm", - "name": "npm:lodash.map", - "data": { - "version": "4.6.0", - "packageName": "lodash.map", - "hash": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" - } - }, - "npm:lodash.mapvalues": { - "type": "npm", - "name": "npm:lodash.mapvalues", - "data": { - "version": "4.6.0", - "packageName": "lodash.mapvalues", - "hash": "sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==" - } - }, - "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.mergewith": { - "type": "npm", - "name": "npm:lodash.mergewith", - "data": { - "version": "4.6.2", - "packageName": "lodash.mergewith", - "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" - } - }, - "npm:lodash.startcase": { - "type": "npm", - "name": "npm:lodash.startcase", - "data": { - "version": "4.4.0", - "packageName": "lodash.startcase", - "hash": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==" - } - }, - "npm:lodash.truncate": { - "type": "npm", - "name": "npm:lodash.truncate", - "data": { - "version": "4.4.2", - "packageName": "lodash.truncate", - "hash": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash@4.17.15": { - "type": "npm", - "name": "npm:lodash@4.17.15", - "data": { - "version": "4.17.15", - "packageName": "lodash", - "hash": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" - } - }, - "npm:lodash@4.17.20": { - "type": "npm", - "name": "npm:lodash@4.17.20", - "data": { - "version": "4.17.20", - "packageName": "lodash", - "hash": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:log-driver": { - "type": "npm", - "name": "npm:log-driver", - "data": { - "version": "1.2.7", - "packageName": "log-driver", - "hash": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==" - } - }, - "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:logform": { - "type": "npm", - "name": "npm:logform", - "data": { - "version": "2.6.0", - "packageName": "logform", - "hash": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==" - } - }, - "npm:longest": { - "type": "npm", - "name": "npm:longest", - "data": { - "version": "2.0.1", - "packageName": "longest", - "hash": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==" - } - }, - "npm:loud-rejection": { - "type": "npm", - "name": "npm:loud-rejection", - "data": { - "version": "2.2.0", - "packageName": "loud-rejection", - "hash": "sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==" - } - }, - "npm:lru-cache@10.4.3": { - "type": "npm", - "name": "npm:lru-cache@10.4.3", - "data": { - "version": "10.4.3", - "packageName": "lru-cache", - "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" - } - }, - "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@5.1.1": { - "type": "npm", - "name": "npm:lru-cache@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "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-queue": { - "type": "npm", - "name": "npm:lru-queue", - "data": { - "version": "0.1.0", - "packageName": "lru-queue", - "hash": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.11", - "packageName": "magic-string", - "hash": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==" - } - }, - "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: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-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.6", - "packageName": "make-error", - "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - } - }, - "npm:make-fetch-happen@10.2.1": { - "type": "npm", - "name": "npm:make-fetch-happen@10.2.1", - "data": { - "version": "10.2.1", - "packageName": "make-fetch-happen", - "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "11.1.1", - "packageName": "make-fetch-happen", - "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:map-obj@1.0.1": { - "type": "npm", - "name": "npm:map-obj@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "map-obj", - "hash": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==" - } - }, - "npm:map-obj": { - "type": "npm", - "name": "npm:map-obj", - "data": { - "version": "4.3.0", - "packageName": "map-obj", - "hash": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" - } - }, - "npm:matomo-tracker": { - "type": "npm", - "name": "npm:matomo-tracker", - "data": { - "version": "2.2.2", - "packageName": "matomo-tracker", - "hash": "sha512-xAeojX+LwXn+UHd6A72DbVkqc4a1a6SKCiQPBwpKA6x4R1qy1Nysg3kEfsh6Xq+bzPjcvn2ppDQb9JXcktmJDQ==" - } - }, - "npm:mem-fs-editor": { - "type": "npm", - "name": "npm:mem-fs-editor", - "data": { - "version": "9.4.0", - "packageName": "mem-fs-editor", - "hash": "sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==" - } - }, - "npm:mem-fs": { - "type": "npm", - "name": "npm:mem-fs", - "data": { - "version": "2.1.0", - "packageName": "mem-fs", - "hash": "sha512-55vFOT4rfJx/9uoWntNrfzEj9209rd26spsSvKsCVBfOPH001YS5IakfElhcyagieC4uL++Ry/XDcwvgxF4/zQ==" - } - }, - "npm:memoizee": { - "type": "npm", - "name": "npm:memoizee", - "data": { - "version": "0.4.15", - "packageName": "memoizee", - "hash": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==" - } - }, - "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": "6.1.1", - "packageName": "meow", - "hash": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==" - } - }, - "npm:meow@8.1.2": { - "type": "npm", - "name": "npm:meow@8.1.2", - "data": { - "version": "8.1.2", - "packageName": "meow", - "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.3", - "packageName": "merge-descriptors", - "hash": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" - } - }, - "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:merge": { - "type": "npm", - "name": "npm:merge", - "data": { - "version": "2.1.1", - "packageName": "merge", - "hash": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==" - } - }, - "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:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:min-indent": { - "type": "npm", - "name": "npm:min-indent", - "data": { - "version": "1.0.1", - "packageName": "min-indent", - "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" - } - }, - "npm:minimatch@3.0.5": { - "type": "npm", - "name": "npm:minimatch@3.0.5", - "data": { - "version": "3.0.5", - "packageName": "minimatch", - "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "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@8.0.4": { - "type": "npm", - "name": "npm:minimatch@8.0.4", - "data": { - "version": "8.0.4", - "packageName": "minimatch", - "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" - } - }, - "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@9.0.5": { - "type": "npm", - "name": "npm:minimatch@9.0.5", - "data": { - "version": "9.0.5", - "packageName": "minimatch", - "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" - } - }, - "npm:minimist-options": { - "type": "npm", - "name": "npm:minimist-options", - "data": { - "version": "4.1.0", - "packageName": "minimist-options", - "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" - } - }, - "npm:minimist@1.2.7": { - "type": "npm", - "name": "npm:minimist@1.2.7", - "data": { - "version": "1.2.7", - "packageName": "minimist", - "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "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-fetch@2.1.2": { - "type": "npm", - "name": "npm:minipass-fetch@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "minipass-fetch", - "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "3.0.5", - "packageName": "minipass-fetch", - "hash": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==" - } - }, - "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.2", - "packageName": "minipass-json-stream", - "hash": "sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==" - } - }, - "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: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@4.2.8": { - "type": "npm", - "name": "npm:minipass@4.2.8", - "data": { - "version": "4.2.8", - "packageName": "minipass", - "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minipass@7.1.2": { - "type": "npm", - "name": "npm:minipass@7.1.2", - "data": { - "version": "7.1.2", - "packageName": "minipass", - "hash": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mixme": { - "type": "npm", - "name": "npm:mixme", - "data": { - "version": "0.5.10", - "packageName": "mixme", - "hash": "sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==" - } - }, - "npm:mkdirp@0.5.6": { - "type": "npm", - "name": "npm:mkdirp@0.5.6", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mock-fs": { - "type": "npm", - "name": "npm:mock-fs", - "data": { - "version": "5.2.0", - "packageName": "mock-fs", - "hash": "sha512-2dF2R6YMSZbpip1V1WHKGLNjr/k48uQClqMVb5H3MOvwc9qhYis3/IWbj02qIg/Y8MDXKFF4c5v0rxx2o6xTZw==" - } - }, - "npm:modify-values": { - "type": "npm", - "name": "npm:modify-values", - "data": { - "version": "1.0.1", - "packageName": "modify-values", - "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" - } - }, - "npm:module-details-from-path": { - "type": "npm", - "name": "npm:module-details-from-path", - "data": { - "version": "1.0.3", - "packageName": "module-details-from-path", - "hash": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==" - } - }, - "npm:module-not-found-error": { - "type": "npm", - "name": "npm:module-not-found-error", - "data": { - "version": "1.0.1", - "packageName": "module-not-found-error", - "hash": "sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==" - } - }, - "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": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:multimatch": { - "type": "npm", - "name": "npm:multimatch", - "data": { - "version": "5.0.0", - "packageName": "multimatch", - "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" - } - }, - "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": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:mz": { - "type": "npm", - "name": "npm:mz", - "data": { - "version": "2.7.0", - "packageName": "mz", - "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" - } - }, - "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: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:next-tick": { - "type": "npm", - "name": "npm:next-tick", - "data": { - "version": "1.1.0", - "packageName": "next-tick", - "hash": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "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-fetch@2.6.7": { - "type": "npm", - "name": "npm:node-fetch@2.6.7", - "data": { - "version": "2.6.7", - "packageName": "node-fetch", - "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.6.9", - "packageName": "node-fetch", - "hash": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.8.2", - "packageName": "node-gyp-build", - "hash": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "9.4.1", - "packageName": "node-gyp", - "hash": "sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==" - } - }, - "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-preload": { - "type": "npm", - "name": "npm:node-preload", - "data": { - "version": "0.2.1", - "packageName": "node-preload", - "hash": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.18", - "packageName": "node-releases", - "hash": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "6.0.0", - "packageName": "nopt", - "hash": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" - } - }, - "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-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "3.0.3", - "packageName": "normalize-package-data", - "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" - } - }, - "npm:normalize-package-data@5.0.0": { - "type": "npm", - "name": "npm:normalize-package-data@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "1.1.2", - "packageName": "npm-bundled", - "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" - } - }, - "npm:npm-bundled@3.0.1": { - "type": "npm", - "name": "npm:npm-bundled@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "npm-bundled", - "hash": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==" - } - }, - "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": "1.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" - } - }, - "npm:npm-normalize-package-bin@3.0.1": { - "type": "npm", - "name": "npm:npm-normalize-package-bin@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-package-arg@10.1.0": { - "type": "npm", - "name": "npm:npm-package-arg@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "npm-package-arg", - "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "8.1.1", - "packageName": "npm-package-arg", - "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "5.1.1", - "packageName": "npm-packlist", - "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" - } - }, - "npm:npm-packlist@7.0.4": { - "type": "npm", - "name": "npm:npm-packlist@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "npm-packlist", - "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "8.0.2", - "packageName": "npm-pick-manifest", - "hash": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==" - } - }, - "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-run-all": { - "type": "npm", - "name": "npm:npm-run-all", - "data": { - "version": "4.1.5", - "packageName": "npm-run-all", - "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" - } - }, - "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:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.13", - "packageName": "nwsapi", - "hash": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==" - } - }, - "npm:nx@16.10.0": { - "type": "npm", - "name": "npm:nx@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "nx", - "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "19.8.4", - "packageName": "nx", - "hash": "sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA==" - } - }, - "npm:nyc": { - "type": "npm", - "name": "npm:nyc", - "data": { - "version": "15.1.0", - "packageName": "nyc", - "hash": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==" - } - }, - "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.13.2", - "packageName": "object-inspect", - "hash": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" - } - }, - "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.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.8", - "packageName": "object.fromentries", - "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" - } - }, - "npm:object.groupby": { - "type": "npm", - "name": "npm:object.groupby", - "data": { - "version": "1.0.3", - "packageName": "object.groupby", - "hash": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.2.0", - "packageName": "object.values", - "hash": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:one-time": { - "type": "npm", - "name": "npm:one-time", - "data": { - "version": "1.0.0", - "packageName": "one-time", - "hash": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "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.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora@5.4.1": { - "type": "npm", - "name": "npm:ora@5.4.1", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:outdent": { - "type": "npm", - "name": "npm:outdent", - "data": { - "version": "0.5.0", - "packageName": "outdent", - "hash": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==" - } - }, - "npm:p-filter": { - "type": "npm", - "name": "npm:p-filter", - "data": { - "version": "2.1.0", - "packageName": "p-filter", - "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "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-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@3.1.0": { - "type": "npm", - "name": "npm:p-limit@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "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": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "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-map-series": { - "type": "npm", - "name": "npm:p-map-series", - "data": { - "version": "2.1.0", - "packageName": "p-map-series", - "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" - } - }, - "npm:p-map@2.1.0": { - "type": "npm", - "name": "npm:p-map@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "p-map", - "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - } - }, - "npm:p-map@3.0.0": { - "type": "npm", - "name": "npm:p-map@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-map", - "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-pipe": { - "type": "npm", - "name": "npm:p-pipe", - "data": { - "version": "3.1.0", - "packageName": "p-pipe", - "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" - } - }, - "npm:p-queue": { - "type": "npm", - "name": "npm:p-queue", - "data": { - "version": "6.6.2", - "packageName": "p-queue", - "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" - } - }, - "npm:p-reduce": { - "type": "npm", - "name": "npm:p-reduce", - "data": { - "version": "2.1.0", - "packageName": "p-reduce", - "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - } - }, - "npm:p-timeout": { - "type": "npm", - "name": "npm:p-timeout", - "data": { - "version": "3.2.0", - "packageName": "p-timeout", - "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" - } - }, - "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:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:p-waterfall": { - "type": "npm", - "name": "npm:p-waterfall", - "data": { - "version": "2.1.1", - "packageName": "p-waterfall", - "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" - } - }, - "npm:package-hash": { - "type": "npm", - "name": "npm:package-hash", - "data": { - "version": "4.0.0", - "packageName": "package-hash", - "hash": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==" - } - }, - "npm:package-json-from-dist": { - "type": "npm", - "name": "npm:package-json-from-dist", - "data": { - "version": "1.0.1", - "packageName": "package-json-from-dist", - "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "15.2.0", - "packageName": "pacote", - "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" - } - }, - "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-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:parse-passwd": { - "type": "npm", - "name": "npm:parse-passwd", - "data": { - "version": "1.0.0", - "packageName": "parse-passwd", - "hash": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==" - } - }, - "npm:parse-path": { - "type": "npm", - "name": "npm:parse-path", - "data": { - "version": "7.0.0", - "packageName": "parse-path", - "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" - } - }, - "npm:parse-url": { - "type": "npm", - "name": "npm:parse-url", - "data": { - "version": "8.1.0", - "packageName": "parse-url", - "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "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-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "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-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key@3.1.1": { - "type": "npm", - "name": "npm:path-key@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.11.1", - "packageName": "path-scurry", - "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" - } - }, - "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:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:pathval": { - "type": "npm", - "name": "npm:pathval", - "data": { - "version": "1.1.1", - "packageName": "pathval", - "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" - } - }, - "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.1.0", - "packageName": "picocolors", - "hash": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.3.1", - "packageName": "pidtree", - "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" - } - }, - "npm:pify@2.3.0": { - "type": "npm", - "name": "npm:pify@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "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@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": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "5.0.0", - "packageName": "pify", - "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "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: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:possible-typed-array-names": { - "type": "npm", - "name": "npm:possible-typed-array-names", - "data": { - "version": "1.0.0", - "packageName": "possible-typed-array-names", - "hash": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.47", - "packageName": "postcss", - "hash": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==" - } - }, - "npm:preferred-pm": { - "type": "npm", - "name": "npm:preferred-pm", - "data": { - "version": "3.1.4", - "packageName": "preferred-pm", - "hash": "sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==" - } - }, - "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.7", - "packageName": "prettier", - "hash": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==" - } - }, - "npm:pretty-format@25.5.0": { - "type": "npm", - "name": "npm:pretty-format@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "pretty-format", - "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" - } - }, - "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:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" - } - }, - "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-on-spawn": { - "type": "npm", - "name": "npm:process-on-spawn", - "data": { - "version": "1.0.0", - "packageName": "process-on-spawn", - "hash": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:promzard": { - "type": "npm", - "name": "npm:promzard", - "data": { - "version": "1.0.2", - "packageName": "promzard", - "hash": "sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==" - } - }, - "npm:protocols": { - "type": "npm", - "name": "npm:protocols", - "data": { - "version": "2.0.1", - "packageName": "protocols", - "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:proxyquire": { - "type": "npm", - "name": "npm:proxyquire", - "data": { - "version": "2.1.3", - "packageName": "proxyquire", - "hash": "sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==" - } - }, - "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.2", - "packageName": "pump", - "hash": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==" - } - }, - "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.1.0", - "packageName": "pure-rand", - "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" - } - }, - "npm:q": { - "type": "npm", - "name": "npm:q", - "data": { - "version": "1.5.1", - "packageName": "q", - "hash": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.5.3", - "packageName": "qs", - "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - } - }, - "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-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "4.0.1", - "packageName": "quick-lru", - "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "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:read-cmd-shim": { - "type": "npm", - "name": "npm:read-cmd-shim", - "data": { - "version": "4.0.0", - "packageName": "read-cmd-shim", - "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "3.0.2", - "packageName": "read-package-json-fast", - "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" - } - }, - "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-pkg-up": { - "type": "npm", - "name": "npm:read-pkg-up", - "data": { - "version": "3.0.0", - "packageName": "read-pkg-up", - "hash": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==" - } - }, - "npm:read-pkg-up@7.0.1": { - "type": "npm", - "name": "npm:read-pkg-up@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "read-pkg-up", - "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" - } - }, - "npm:read-pkg": { - "type": "npm", - "name": "npm:read-pkg", - "data": { - "version": "3.0.0", - "packageName": "read-pkg", - "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" - } - }, - "npm:read-pkg@5.2.0": { - "type": "npm", - "name": "npm:read-pkg@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "read-pkg", - "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" - } - }, - "npm:read-yaml-file": { - "type": "npm", - "name": "npm:read-yaml-file", - "data": { - "version": "1.1.0", - "packageName": "read-yaml-file", - "hash": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==" - } - }, - "npm:read": { - "type": "npm", - "name": "npm:read", - "data": { - "version": "2.1.0", - "packageName": "read", - "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" - } - }, - "npm:read@3.0.1": { - "type": "npm", - "name": "npm:read@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "read", - "hash": "sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==" - } - }, - "npm:readable-stream@2.3.8": { - "type": "npm", - "name": "npm:readable-stream@2.3.8", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:realpath-native": { - "type": "npm", - "name": "npm:realpath-native", - "data": { - "version": "2.0.0", - "packageName": "realpath-native", - "hash": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==" - } - }, - "npm:rechoir": { - "type": "npm", - "name": "npm:rechoir", - "data": { - "version": "0.6.2", - "packageName": "rechoir", - "hash": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==" - } - }, - "npm:redent": { - "type": "npm", - "name": "npm:redent", - "data": { - "version": "3.0.0", - "packageName": "redent", - "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regexp-to-ast": { - "type": "npm", - "name": "npm:regexp-to-ast", - "data": { - "version": "0.5.0", - "packageName": "regexp-to-ast", - "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.3", - "packageName": "regexp.prototype.flags", - "hash": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.2.0", - "packageName": "regexpp", - "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - } - }, - "npm:release-zalgo": { - "type": "npm", - "name": "npm:release-zalgo", - "data": { - "version": "1.0.0", - "packageName": "release-zalgo", - "hash": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==" - } - }, - "npm:remove-trailing-separator": { - "type": "npm", - "name": "npm:remove-trailing-separator", - "data": { - "version": "1.1.0", - "packageName": "remove-trailing-separator", - "hash": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" - } - }, - "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-ext": { - "type": "npm", - "name": "npm:replace-ext", - "data": { - "version": "1.0.1", - "packageName": "replace-ext", - "hash": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" - } - }, - "npm:request": { - "type": "npm", - "name": "npm:request", - "data": { - "version": "2.88.2", - "packageName": "request", - "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" - } - }, - "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:require-in-the-middle": { - "type": "npm", - "name": "npm:require-in-the-middle", - "data": { - "version": "7.4.0", - "packageName": "require-in-the-middle", - "hash": "sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==" - } - }, - "npm:require-main-filename": { - "type": "npm", - "name": "npm:require-main-filename", - "data": { - "version": "2.0.0", - "packageName": "require-main-filename", - "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "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-dir": { - "type": "npm", - "name": "npm:resolve-dir", - "data": { - "version": "1.0.1", - "packageName": "resolve-dir", - "hash": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==" - } - }, - "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:resolve-global": { - "type": "npm", - "name": "npm:resolve-global", - "data": { - "version": "1.0.0", - "packageName": "resolve-global", - "hash": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==" - } - }, - "npm:resolve-pkg-maps": { - "type": "npm", - "name": "npm:resolve-pkg-maps", - "data": { - "version": "1.0.0", - "packageName": "resolve-pkg-maps", - "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve@1.1.7": { - "type": "npm", - "name": "npm:resolve@1.1.7", - "data": { - "version": "1.1.7", - "packageName": "resolve", - "hash": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - } - }, - "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.4.1", - "packageName": "rfdc", - "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" - } - }, - "npm:rimraf@2.7.1": { - "type": "npm", - "name": "npm:rimraf@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "rimraf", - "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@4.4.1": { - "type": "npm", - "name": "npm:rimraf@4.4.1", - "data": { - "version": "4.4.1", - "packageName": "rimraf", - "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" - } - }, - "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-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.1.2", - "packageName": "safe-array-concat", - "hash": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==" - } - }, - "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": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.0.3", - "packageName": "safe-regex-test", - "hash": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==" - } - }, - "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:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "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@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@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.3.2": { - "type": "npm", - "name": "npm:semver@7.3.2", - "data": { - "version": "7.3.2", - "packageName": "semver", - "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.3.7", - "packageName": "semver", - "hash": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" - } - }, - "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.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:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.2", - "packageName": "serialize-javascript", - "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.2", - "packageName": "set-function-length", - "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.2", - "packageName": "set-function-name", - "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" - } - }, - "npm:setimmediate": { - "type": "npm", - "name": "npm:setimmediate", - "data": { - "version": "1.0.5", - "packageName": "setimmediate", - "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command@2.0.0": { - "type": "npm", - "name": "npm:shebang-command@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "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": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:shelljs": { - "type": "npm", - "name": "npm:shelljs", - "data": { - "version": "0.8.5", - "packageName": "shelljs", - "hash": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" - } - }, - "npm:shimmer": { - "type": "npm", - "name": "npm:shimmer", - "data": { - "version": "1.2.1", - "packageName": "shimmer", - "hash": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" - } - }, - "npm:shx": { - "type": "npm", - "name": "npm:shx", - "data": { - "version": "0.3.3", - "packageName": "shx", - "hash": "sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.6", - "packageName": "side-channel", - "hash": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==" - } - }, - "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: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:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "1.9.0", - "packageName": "sigstore", - "hash": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==" - } - }, - "npm:simple-git": { - "type": "npm", - "name": "npm:simple-git", - "data": { - "version": "3.12.0", - "packageName": "simple-git", - "hash": "sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.2", - "packageName": "simple-swizzle", - "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "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:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:smartwrap": { - "type": "npm", - "name": "npm:smartwrap", - "data": { - "version": "2.0.2", - "packageName": "smartwrap", - "hash": "sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==" - } - }, - "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:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.8.3", - "packageName": "socks", - "hash": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==" - } - }, - "npm:sort-any": { - "type": "npm", - "name": "npm:sort-any", - "data": { - "version": "1.2.9", - "packageName": "sort-any", - "hash": "sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "2.0.0", - "packageName": "sort-keys", - "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.2.1", - "packageName": "source-map-js", - "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" - } - }, - "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.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support@0.5.21": { - "type": "npm", - "name": "npm:source-map-support@0.5.21", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map@0.5.6": { - "type": "npm", - "name": "npm:source-map@0.5.6", - "data": { - "version": "0.5.6", - "packageName": "source-map", - "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:spawn-wrap": { - "type": "npm", - "name": "npm:spawn-wrap", - "data": { - "version": "2.0.0", - "packageName": "spawn-wrap", - "hash": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==" - } - }, - "npm:spawndamnit": { - "type": "npm", - "name": "npm:spawndamnit", - "data": { - "version": "2.0.0", - "packageName": "spawndamnit", - "hash": "sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.2.0", - "packageName": "spdx-correct", - "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.5.0", - "packageName": "spdx-exceptions", - "hash": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.20", - "packageName": "spdx-license-ids", - "hash": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "3.2.2", - "packageName": "split2", - "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" - } - }, - "npm:split": { - "type": "npm", - "name": "npm:split", - "data": { - "version": "1.0.1", - "packageName": "split", - "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:sprintf-js@1.1.3": { - "type": "npm", - "name": "npm:sprintf-js@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "sprintf-js", - "hash": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.18.0", - "packageName": "sshpk", - "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" - } - }, - "npm:ssri@10.0.6": { - "type": "npm", - "name": "npm:ssri@10.0.6", - "data": { - "version": "10.0.6", - "packageName": "ssri", - "hash": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "9.0.1", - "packageName": "ssri", - "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" - } - }, - "npm:stack-chain": { - "type": "npm", - "name": "npm:stack-chain", - "data": { - "version": "1.3.7", - "packageName": "stack-chain", - "hash": "sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==" - } - }, - "npm:stack-generator": { - "type": "npm", - "name": "npm:stack-generator", - "data": { - "version": "2.0.10", - "packageName": "stack-generator", - "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" - } - }, - "npm:stack-trace": { - "type": "npm", - "name": "npm:stack-trace", - "data": { - "version": "0.0.10", - "packageName": "stack-trace", - "hash": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" - } - }, - "npm:stack-utils@1.0.5": { - "type": "npm", - "name": "npm:stack-utils@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "stack-utils", - "hash": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:stackframe": { - "type": "npm", - "name": "npm:stackframe", - "data": { - "version": "1.3.4", - "packageName": "stackframe", - "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - } - }, - "npm:stacktrace-gps": { - "type": "npm", - "name": "npm:stacktrace-gps", - "data": { - "version": "3.1.2", - "packageName": "stacktrace-gps", - "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" - } - }, - "npm:stacktrace-js": { - "type": "npm", - "name": "npm:stacktrace-js", - "data": { - "version": "2.0.2", - "packageName": "stacktrace-js", - "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" - } - }, - "npm:stdin": { - "type": "npm", - "name": "npm:stdin", - "data": { - "version": "0.0.1", - "packageName": "stdin", - "hash": "sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ==" - } - }, - "npm:stream-transform": { - "type": "npm", - "name": "npm:stream-transform", - "data": { - "version": "2.1.3", - "packageName": "stream-transform", - "hash": "sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==" - } - }, - "npm:streamroller": { - "type": "npm", - "name": "npm:streamroller", - "data": { - "version": "2.2.3", - "packageName": "streamroller", - "hash": "sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.1", - "packageName": "string-argv", - "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-replace-loader": { - "type": "npm", - "name": "npm:string-replace-loader", - "data": { - "version": "3.1.0", - "packageName": "string-replace-loader", - "hash": "sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "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-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string.prototype.padend": { - "type": "npm", - "name": "npm:string.prototype.padend", - "data": { - "version": "3.1.6", - "packageName": "string.prototype.padend", - "hash": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.9", - "packageName": "string.prototype.trim", - "hash": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.8", - "packageName": "string.prototype.trimend", - "hash": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.8", - "packageName": "string.prototype.trimstart", - "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" - } - }, - "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_decoder@1.3.0": { - "type": "npm", - "name": "npm:string_decoder@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:stringify-object": { - "type": "npm", - "name": "npm:stringify-object", - "data": { - "version": "3.3.0", - "packageName": "stringify-object", - "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "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-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-bom-buf": { - "type": "npm", - "name": "npm:strip-bom-buf", - "data": { - "version": "1.0.0", - "packageName": "strip-bom-buf", - "hash": "sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==" - } - }, - "npm:strip-bom-stream": { - "type": "npm", - "name": "npm:strip-bom-stream", - "data": { - "version": "2.0.0", - "packageName": "strip-bom-stream", - "hash": "sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==" - } - }, - "npm:strip-bom@2.0.0": { - "type": "npm", - "name": "npm:strip-bom@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "strip-bom", - "hash": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==" - } - }, - "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:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-indent": { - "type": "npm", - "name": "npm:strip-indent", - "data": { - "version": "3.0.0", - "packageName": "strip-indent", - "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - } - }, - "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:strnum": { - "type": "npm", - "name": "npm:strnum", - "data": { - "version": "1.0.5", - "packageName": "strnum", - "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - } - }, - "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:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "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@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-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: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:table": { - "type": "npm", - "name": "npm:table", - "data": { - "version": "6.8.1", - "packageName": "table", - "hash": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==" - } - }, - "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:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.1.11", - "packageName": "tar", - "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "1.0.0", - "packageName": "temp-dir", - "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" - } - }, - "npm:temp-dir@2.0.0": { - "type": "npm", - "name": "npm:temp-dir@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "temp-dir", - "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" - } - }, - "npm:tempfile": { - "type": "npm", - "name": "npm:tempfile", - "data": { - "version": "3.0.0", - "packageName": "tempfile", - "hash": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==" - } - }, - "npm:term-size": { - "type": "npm", - "name": "npm:term-size", - "data": { - "version": "2.2.1", - "packageName": "term-size", - "hash": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.10", - "packageName": "terser-webpack-plugin", - "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.34.1", - "packageName": "terser", - "hash": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==" - } - }, - "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": "1.9.0", - "packageName": "text-extensions", - "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" - } - }, - "npm:text-hex": { - "type": "npm", - "name": "npm:text-hex", - "data": { - "version": "1.0.0", - "packageName": "text-hex", - "hash": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - } - }, - "npm:textextensions": { - "type": "npm", - "name": "npm:textextensions", - "data": { - "version": "5.16.0", - "packageName": "textextensions", - "hash": "sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==" - } - }, - "npm:thenify-all": { - "type": "npm", - "name": "npm:thenify-all", - "data": { - "version": "1.6.0", - "packageName": "thenify-all", - "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" - } - }, - "npm:thenify": { - "type": "npm", - "name": "npm:thenify", - "data": { - "version": "3.3.1", - "packageName": "thenify", - "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" - } - }, - "npm:through2@2.0.5": { - "type": "npm", - "name": "npm:through2@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "4.0.2", - "packageName": "through2", - "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:timers-ext": { - "type": "npm", - "name": "npm:timers-ext", - "data": { - "version": "0.1.7", - "packageName": "timers-ext", - "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" - } - }, - "npm:tmp-promise": { - "type": "npm", - "name": "npm:tmp-promise", - "data": { - "version": "3.0.2", - "packageName": "tmp-promise", - "hash": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==" - } - }, - "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: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-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:tough-cookie@2.5.0": { - "type": "npm", - "name": "npm:tough-cookie@2.5.0", - "data": { - "version": "2.5.0", - "packageName": "tough-cookie", - "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.4", - "packageName": "tough-cookie", - "hash": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tr46@3.0.0": { - "type": "npm", - "name": "npm:tr46@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.3.9", - "packageName": "traverse", - "hash": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==" - } - }, - "npm:trim-newlines": { - "type": "npm", - "name": "npm:trim-newlines", - "data": { - "version": "3.0.1", - "packageName": "trim-newlines", - "hash": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" - } - }, - "npm:triple-beam": { - "type": "npm", - "name": "npm:triple-beam", - "data": { - "version": "1.3.0", - "packageName": "triple-beam", - "hash": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.0.5", - "packageName": "ts-jest", - "hash": "sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "8.5.2", - "packageName": "ts-node", - "hash": "sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A==" - } - }, - "npm:tsconfig-paths@3.15.0": { - "type": "npm", - "name": "npm:tsconfig-paths@3.15.0", - "data": { - "version": "3.15.0", - "packageName": "tsconfig-paths", - "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" - } - }, - "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: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:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.7.0", - "packageName": "tslib", - "hash": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" - } - }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, - "npm:tty-table": { - "type": "npm", - "name": "npm:tty-table", - "data": { - "version": "4.2.3", - "packageName": "tty-table", - "hash": "sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "1.1.7", - "packageName": "tuf-js", - "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" - } - }, - "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: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-fest@0.13.1": { - "type": "npm", - "name": "npm:type-fest@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "type-fest", - "hash": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==" - } - }, - "npm:type-fest@0.18.1": { - "type": "npm", - "name": "npm:type-fest@0.18.1", - "data": { - "version": "0.18.1", - "packageName": "type-fest", - "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" - } - }, - "npm:type-fest@0.21.3": { - "type": "npm", - "name": "npm:type-fest@0.21.3", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:type-fest@0.4.1": { - "type": "npm", - "name": "npm:type-fest@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "type-fest", - "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" - } - }, - "npm:type-fest@0.6.0": { - "type": "npm", - "name": "npm:type-fest@0.6.0", - "data": { - "version": "0.6.0", - "packageName": "type-fest", - "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.8.1", - "packageName": "type-fest", - "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } - }, - "npm:type": { - "type": "npm", - "name": "npm:type", - "data": { - "version": "1.2.0", - "packageName": "type", - "hash": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - } - }, - "npm:type@2.7.2": { - "type": "npm", - "name": "npm:type@2.7.2", - "data": { - "version": "2.7.2", - "packageName": "type", - "hash": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.2", - "packageName": "typed-array-buffer", - "hash": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.1", - "packageName": "typed-array-byte-length", - "hash": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.2", - "packageName": "typed-array-byte-offset", - "hash": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.6", - "packageName": "typed-array-length", - "hash": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==" - } - }, - "npm:typedarray-to-buffer": { - "type": "npm", - "name": "npm:typedarray-to-buffer", - "data": { - "version": "3.1.5", - "packageName": "typedarray-to-buffer", - "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" - } - }, - "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": "4.9.4", - "packageName": "typescript", - "hash": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.19.3", - "packageName": "uglify-js", - "hash": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.2", - "packageName": "unbox-primitive", - "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" - } - }, - "npm:unique-filename@2.0.1": { - "type": "npm", - "name": "npm:unique-filename@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "unique-filename", - "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" - } - }, - "npm:unique-slug@3.0.0": { - "type": "npm", - "name": "npm:unique-slug@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unique-slug", - "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" - } - }, - "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: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:unzipper": { - "type": "npm", - "name": "npm:unzipper", - "data": { - "version": "0.10.14", - "packageName": "unzipper", - "hash": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==" - } - }, - "npm:upath": { - "type": "npm", - "name": "npm:upath", - "data": { - "version": "2.0.1", - "packageName": "upath", - "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.1.1", - "packageName": "update-browserslist-db", - "hash": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==" - } - }, - "npm:update-ts-references": { - "type": "npm", - "name": "npm:update-ts-references", - "data": { - "version": "3.2.1", - "packageName": "update-ts-references", - "hash": "sha512-ur9psM1Jvg67Y1ErSIX/zAG5t934ZfZwigB4hZwzmOwn4Cgez3sEoUUvSYvvxj4nLgWdkPKQVDL53MwA+DEndw==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "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:uuid@9.0.1": { - "type": "npm", - "name": "npm:uuid@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "uuid", - "hash": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" - } - }, - "npm:v8-compile-cache@2.3.0": { - "type": "npm", - "name": "npm:v8-compile-cache@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "v8-compile-cache", - "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - } - }, - "npm:v8-compile-cache": { - "type": "npm", - "name": "npm:v8-compile-cache", - "data": { - "version": "2.4.0", - "packageName": "v8-compile-cache", - "hash": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.3.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - } - }, - "npm:validate-npm-package-name@3.0.0": { - "type": "npm", - "name": "npm:validate-npm-package-name@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" - } - }, - "npm:vinyl-file": { - "type": "npm", - "name": "npm:vinyl-file", - "data": { - "version": "3.0.0", - "packageName": "vinyl-file", - "hash": "sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==" - } - }, - "npm:vinyl": { - "type": "npm", - "name": "npm:vinyl", - "data": { - "version": "2.2.1", - "packageName": "vinyl", - "hash": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==" - } - }, - "npm:vscode-jsonrpc": { - "type": "npm", - "name": "npm:vscode-jsonrpc", - "data": { - "version": "8.0.2", - "packageName": "vscode-jsonrpc", - "hash": "sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==" - } - }, - "npm:vscode-languageclient": { - "type": "npm", - "name": "npm:vscode-languageclient", - "data": { - "version": "8.0.2", - "packageName": "vscode-languageclient", - "hash": "sha512-lHlthJtphG9gibGb/y72CKqQUxwPsMXijJVpHEC2bvbFqxmkj9LwQ3aGU9dwjBLqsX1S4KjShYppLvg1UJDF/Q==" - } - }, - "npm:vscode-languageserver-protocol": { - "type": "npm", - "name": "npm:vscode-languageserver-protocol", - "data": { - "version": "3.17.2", - "packageName": "vscode-languageserver-protocol", - "hash": "sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==" - } - }, - "npm:vscode-languageserver-textdocument@1.0.1": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==" - } - }, - "npm:vscode-languageserver-textdocument@1.0.11": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument@1.0.11", - "data": { - "version": "1.0.11", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==" - } - }, - "npm:vscode-languageserver-textdocument": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument", - "data": { - "version": "1.0.12", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==" - } - }, - "npm:vscode-languageserver-textdocument@1.0.7": { - "type": "npm", - "name": "npm:vscode-languageserver-textdocument@1.0.7", - "data": { - "version": "1.0.7", - "packageName": "vscode-languageserver-textdocument", - "hash": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" - } - }, - "npm:vscode-languageserver-types": { - "type": "npm", - "name": "npm:vscode-languageserver-types", - "data": { - "version": "3.17.2", - "packageName": "vscode-languageserver-types", - "hash": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==" - } - }, - "npm:vscode-languageserver": { - "type": "npm", - "name": "npm:vscode-languageserver", - "data": { - "version": "8.0.2", - "packageName": "vscode-languageserver", - "hash": "sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==" - } - }, - "npm:vscode-test": { - "type": "npm", - "name": "npm:vscode-test", - "data": { - "version": "1.6.1", - "packageName": "vscode-test", - "hash": "sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA==" - } - }, - "npm:vscode-uri": { - "type": "npm", - "name": "npm:vscode-uri", - "data": { - "version": "2.1.2", - "packageName": "vscode-uri", - "hash": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==" - } - }, - "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.2", - "packageName": "watchpack", - "hash": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "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: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": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.95.0", - "packageName": "webpack", - "hash": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==" - } - }, - "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:whatwg-url@11.0.0": { - "type": "npm", - "name": "npm:whatwg-url@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "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-module": { - "type": "npm", - "name": "npm:which-module", - "data": { - "version": "2.0.1", - "packageName": "which-module", - "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" - } - }, - "npm:which-pm": { - "type": "npm", - "name": "npm:which-pm", - "data": { - "version": "2.2.0", - "packageName": "which-pm", - "hash": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.15", - "packageName": "which-typed-array", - "hash": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==" - } - }, - "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@2.0.2": { - "type": "npm", - "name": "npm:which@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "3.0.1", - "packageName": "which", - "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" - } - }, - "npm:wide-align": { - "type": "npm", - "name": "npm:wide-align", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - } - }, - "npm:winston-transport": { - "type": "npm", - "name": "npm:winston-transport", - "data": { - "version": "4.3.0", - "packageName": "winston-transport", - "hash": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==" - } - }, - "npm:winston-transport@4.6.0": { - "type": "npm", - "name": "npm:winston-transport@4.6.0", - "data": { - "version": "4.6.0", - "packageName": "winston-transport", - "hash": "sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==" - } - }, - "npm:winston": { - "type": "npm", - "name": "npm:winston", - "data": { - "version": "3.3.3", - "packageName": "winston", - "hash": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.5", - "packageName": "word-wrap", - "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - } - }, - "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: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-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:write-file-atomic@2.4.3": { - "type": "npm", - "name": "npm:write-file-atomic@2.4.3", - "data": { - "version": "2.4.3", - "packageName": "write-file-atomic", - "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" - } - }, - "npm:write-file-atomic@3.0.3": { - "type": "npm", - "name": "npm:write-file-atomic@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "write-file-atomic", - "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" - } - }, - "npm:write-file-atomic@4.0.2": { - "type": "npm", - "name": "npm:write-file-atomic@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "5.0.1", - "packageName": "write-file-atomic", - "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" - } - }, - "npm:write-json-file": { - "type": "npm", - "name": "npm:write-json-file", - "data": { - "version": "3.2.0", - "packageName": "write-json-file", - "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" - } - }, - "npm:write-pkg": { - "type": "npm", - "name": "npm:write-pkg", - "data": { - "version": "4.0.0", - "packageName": "write-pkg", - "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.17.1", - "packageName": "ws", - "hash": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==" - } - }, - "npm:ws@8.18.0": { - "type": "npm", - "name": "npm:ws@8.18.0", - "data": { - "version": "8.18.0", - "packageName": "ws", - "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" - } - }, - "npm:xml-js": { - "type": "npm", - "name": "npm:xml-js", - "data": { - "version": "1.6.11", - "packageName": "xml-js", - "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" - } - }, - "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:xml": { - "type": "npm", - "name": "npm:xml", - "data": { - "version": "1.0.1", - "packageName": "xml", - "hash": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==" - } - }, - "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": "4.0.3", - "packageName": "y18n", - "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - } - }, - "npm:y18n@5.0.8": { - "type": "npm", - "name": "npm:y18n@5.0.8", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "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@3.1.1": { - "type": "npm", - "name": "npm:yallist@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yaml@2.2.2": { - "type": "npm", - "name": "npm:yaml@2.2.2", - "data": { - "version": "2.2.2", - "packageName": "yaml", - "hash": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==" - } - }, - "npm:yargs-parser@18.1.3": { - "type": "npm", - "name": "npm:yargs-parser@18.1.3", - "data": { - "version": "18.1.3", - "packageName": "yargs-parser", - "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "20.2.4", - "packageName": "yargs-parser", - "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" - } - }, - "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@21.1.1": { - "type": "npm", - "name": "npm:yargs-parser@21.1.1", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "15.4.1", - "packageName": "yargs", - "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - } - }, - "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@17.7.2": { - "type": "npm", - "name": "npm:yargs@17.7.2", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "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==" - } - } - }, - "dependencies": { - "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext": [ - { - "source": "@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext", - "target": "npm:fs-extra", - "type": "static" - } - ], - "vscode-ui5-language-assistant": [ - { - "source": "vscode-ui5-language-assistant", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:@types/vscode", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/binding-parser", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/settings", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/test-framework", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/user-facing-text", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/binding", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:@vscode-logging/types", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:axios", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:chai", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:mock-fs", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:proxyquire", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:vscode-uri", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:vscode-test", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "@ui5-language-assistant/language-server", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:@prettier/plugin-xml", - "type": "static" - }, - { - "source": "vscode-ui5-language-assistant", - "target": "npm:vscode-languageclient", - "type": "static" - } - ], - "@ui5-language-assistant/semantic-model-types": [ - { - "source": "@ui5-language-assistant/semantic-model-types", - "target": "@ui5-language-assistant/constant", - "type": "static" - } - ], - "@ui5-language-assistant/xml-views-completion": [ - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/semantic-model", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:chevrotain", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/settings", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:@xml-tools/content-assist", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:assert-never", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-completion", - "target": "npm:lodash", - "type": "static" - } - ], - "@ui5-language-assistant/xml-views-definition": [ - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "@ui5-language-assistant/test-framework", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "npm:vscode-languageserver-textdocument@1.0.1", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "npm:vscode-uri", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-definition", - "target": "@ui5-language-assistant/binding-parser", - "type": "static" - } - ], - "@ui5-language-assistant/xml-views-validation": [ - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/semantic-model", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/test-framework", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:@types/deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "@ui5-language-assistant/user-facing-text", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:assert-never", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:klaw-sync", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-validation", - "target": "npm:vscode-uri", - "type": "static" - } - ], - "@ui5-language-assistant/xml-views-quick-fix": [ - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "npm:@xml-tools/ast-position", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-quick-fix", - "target": "npm:lodash", - "type": "static" - } - ], - "@ui5-language-assistant/xml-views-tooltip": [ - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:assert-never", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "@ui5-language-assistant/semantic-model", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:@xml-tools/ast-position", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/xml-views-tooltip", - "target": "npm:lodash", - "type": "static" - } - ], - "@ui5-language-assistant/user-facing-text": [ - { - "source": "@ui5-language-assistant/user-facing-text", - "target": "npm:lodash", - "type": "static" - } - ], - "@ui5-language-assistant/language-server": [ - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/binding-parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@types/js-yaml", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@types/tmp", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:string-replace-loader", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/binding", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/fe", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/logger", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/semantic-model", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/settings", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/user-facing-text", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/xml-views-completion", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/xml-views-definition", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/xml-views-quick-fix", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/xml-views-tooltip", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "@ui5-language-assistant/xml-views-validation", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@xml-tools/ast-position", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:assert-never", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:i18next", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:jest-extended", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:klaw-sync", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:vscode-languageserver-textdocument@1.0.1", - "type": "static" - }, - { - "source": "@ui5-language-assistant/language-server", - "target": "npm:vscode-uri", - "type": "static" - } - ], - "@ui5-language-assistant/test-utils": [ - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "@ui5-language-assistant/language-server", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "@ui5-language-assistant/xml-views-completion", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:chai", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:deep-equal-in-any-order", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-utils", - "target": "npm:proxy-from-env", - "type": "static" - } - ], - "@ui5-language-assistant/binding-parser": [ - { - "source": "@ui5-language-assistant/binding-parser", - "target": "npm:cross-env", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding-parser", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding-parser", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding-parser", - "target": "npm:chevrotain@10.4.2", - "type": "static" - } - ], - "@ui5-language-assistant/semantic-model": [ - { - "source": "@ui5-language-assistant/semantic-model", - "target": "npm:@types/deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "npm:json-schema-to-typescript", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "@ui5-language-assistant/logger", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "npm:deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@ui5-language-assistant/semantic-model", - "target": "npm:lodash", - "type": "static" - } - ], - "@ui5-language-assistant/test-framework": [ - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:chevrotain", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:eslint-plugin-eslint-comments", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:i18next", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:vscode-languageserver-textdocument@1.0.11", - "type": "static" - }, - { - "source": "@ui5-language-assistant/test-framework", - "target": "npm:vscode-uri", - "type": "static" - } - ], - "@ui5-language-assistant/logic-utils": [ - { - "source": "@ui5-language-assistant/logic-utils", - "target": "@ui5-language-assistant/semantic-model", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "@ui5-language-assistant/settings", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "@ui5-language-assistant/logger", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logic-utils", - "target": "npm:chevrotain", - "type": "static" - } - ], - "@ui5-language-assistant/constant": [], - "@ui5-language-assistant/settings": [ - { - "source": "@ui5-language-assistant/settings", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/settings", - "target": "npm:@types/deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/settings", - "target": "npm:deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/settings", - "target": "npm:lodash", - "type": "static" - } - ], - "@ui5-language-assistant/binding": [ - { - "source": "@ui5-language-assistant/binding", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:@types/deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/test-framework", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/binding-parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/logger", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/settings", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "@ui5-language-assistant/xml-views-validation", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:@xml-tools/ast-position", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:@xml-tools/content-assist", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:i18next", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:vscode-languageserver-textdocument", - "type": "static" - }, - { - "source": "@ui5-language-assistant/binding", - "target": "npm:chevrotain", - "type": "static" - } - ], - "@ui5-language-assistant/context": [ - { - "source": "@ui5-language-assistant/context", - "target": "npm:@sap-ux/vocabularies-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@types/js-yaml", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/test-framework", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/test-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:tmp-promise", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:mock-fs", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:proxyquire", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@sap-ux/annotation-converter", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@sap-ux/edmx-parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@sap-ux/project-access", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/constant", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/language-server", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/logger", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "@ui5-language-assistant/semantic-model", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:globby", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:semver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:vscode-languageserver", - "type": "static" - }, - { - "source": "@ui5-language-assistant/context", - "target": "npm:vscode-uri", - "type": "static" - } - ], - "@ui5-language-assistant/logger": [ - { - "source": "@ui5-language-assistant/logger", - "target": "npm:@vscode-logging/types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logger", - "target": "npm:@vscode-logging/logger", - "type": "static" - }, - { - "source": "@ui5-language-assistant/logger", - "target": "@ui5-language-assistant/settings", - "type": "static" - } - ], - "@ui5-language-assistant/fe": [ - { - "source": "@ui5-language-assistant/fe", - "target": "npm:@sap-ux/vocabularies-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:@types/deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/semantic-model-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/test-framework", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:@xml-tools/ast", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:vscode-languageserver-types", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/context", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/logic-utils", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/settings", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/xml-views-completion", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "@ui5-language-assistant/xml-views-validation", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:@xml-tools/content-assist", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:assert-never", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:chevrotain", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:deep-freeze-strict", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:i18next", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@ui5-language-assistant/fe", - "target": "npm:vscode-languageserver-textdocument", - "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:@apidevtools/json-schema-ref-parser": [ - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:@jsdevtools/ono", - "type": "static" - }, - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:call-me-maybe", - "type": "static" - }, - { - "source": "npm:@apidevtools/json-schema-ref-parser", - "target": "npm:js-yaml", - "type": "static" - } - ], - "npm:@azure/abort-controller@1.1.0": [ - { - "source": "npm:@azure/abort-controller@1.1.0", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/abort-controller": [ - { - "source": "npm:@azure/abort-controller", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-auth": [ - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/core-util", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-rest-pipeline": [ - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/abort-controller@1.1.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-util", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:http-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@azure/core-tracing": [ - { - "source": "npm:@azure/core-tracing", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-util": [ - { - "source": "npm:@azure/core-util", - "target": "npm:@azure/abort-controller@1.1.0", - "type": "static" - }, - { - "source": "npm:@azure/core-util", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/logger": [ - { - "source": "npm:@azure/logger", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/opentelemetry-instrumentation-azure-sdk": [ - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "target": "npm:@opentelemetry/instrumentation", - "type": "static" - }, - { - "source": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "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:picocolors", - "type": "static" - } - ], - "npm:@babel/code-frame@7.25.7": [ - { - "source": "npm:@babel/code-frame@7.25.7", - "target": "npm:@babel/highlight@7.25.7", - "type": "static" - }, - { - "source": "npm:@babel/code-frame@7.25.7", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:@babel/core": [ - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame@7.25.7", - "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-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@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-module-imports": [ - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "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-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-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/helper-simple-access": [ - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "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/types", - "type": "static" - } - ], - "npm:@babel/highlight": [ - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier@7.24.7", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:@babel/highlight@7.25.7": [ - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight@7.25.7", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:@babel/parser": [ - { - "source": "npm:@babel/parser", - "target": "npm:@babel/types", - "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-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-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/runtime": [ - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@babel/template": [ - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame@7.25.7", - "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@7.25.7", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/template", - "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@11.12.0", - "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:@changesets/apply-release-plan": [ - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/config", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/get-version-range-type", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/git", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:detect-indent", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:lodash.startcase", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:outdent", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@changesets/apply-release-plan", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@changesets/assemble-release-plan": [ - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@changesets/get-dependents-graph", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/assemble-release-plan", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@changesets/changelog-git": [ - { - "source": "npm:@changesets/changelog-git", - "target": "npm:@changesets/types", - "type": "static" - } - ], - "npm:@changesets/cli": [ - { - "source": "npm:@changesets/cli", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/apply-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/assemble-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/changelog-git", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/config", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/get-dependents-graph", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/get-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/git", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/logger", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/pre", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/read", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@changesets/write", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@types/is-ci", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:@types/semver@6.2.7", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:human-id", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:outdent", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:preferred-pm", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:spawndamnit", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:term-size", - "type": "static" - }, - { - "source": "npm:@changesets/cli", - "target": "npm:tty-table", - "type": "static" - } - ], - "npm:@changesets/config": [ - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/get-dependents-graph", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/logger", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/config", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:@changesets/errors": [ - { - "source": "npm:@changesets/errors", - "target": "npm:extendable-error", - "type": "static" - } - ], - "npm:@changesets/get-dependents-graph": [ - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/get-dependents-graph", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@changesets/get-release-plan": [ - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/assemble-release-plan", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/config", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/pre", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/read", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/get-release-plan", - "target": "npm:@manypkg/get-packages", - "type": "static" - } - ], - "npm:@changesets/git": [ - { - "source": "npm:@changesets/git", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:is-subdir", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@changesets/git", - "target": "npm:spawndamnit", - "type": "static" - } - ], - "npm:@changesets/logger": [ - { - "source": "npm:@changesets/logger", - "target": "npm:chalk", - "type": "static" - } - ], - "npm:@changesets/parse": [ - { - "source": "npm:@changesets/parse", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/parse", - "target": "npm:js-yaml@3.14.1", - "type": "static" - } - ], - "npm:@changesets/pre": [ - { - "source": "npm:@changesets/pre", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@changesets/errors", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:@manypkg/get-packages", - "type": "static" - }, - { - "source": "npm:@changesets/pre", - "target": "npm:fs-extra@7.0.1", - "type": "static" - } - ], - "npm:@changesets/read": [ - { - "source": "npm:@changesets/read", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/git", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/logger", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/parse", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/read", - "target": "npm:p-filter", - "type": "static" - } - ], - "npm:@changesets/write": [ - { - "source": "npm:@changesets/write", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:@changesets/types", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:human-id", - "type": "static" - }, - { - "source": "npm:@changesets/write", - "target": "npm:prettier", - "type": "static" - } - ], - "npm:@chevrotain/cst-dts-gen": [ - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@chevrotain/gast": [ - { - "source": "npm:@chevrotain/gast", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/gast", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@commitlint/cli": [ - { - "source": "npm:@commitlint/cli", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/format", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/lint", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/load", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:@commitlint/read", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:get-stdin", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:resolve-global", - "type": "static" - }, - { - "source": "npm:@commitlint/cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:@commitlint/config-conventional": [ - { - "source": "npm:@commitlint/config-conventional", - "target": "npm:conventional-changelog-conventionalcommits", - "type": "static" - } - ], - "npm:@commitlint/config-validator": [ - { - "source": "npm:@commitlint/config-validator", - "target": "npm:@commitlint/types@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/config-validator", - "target": "npm:ajv@8.17.1", - "type": "static" - } - ], - "npm:@commitlint/ensure": [ - { - "source": "npm:@commitlint/ensure", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/ensure", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@commitlint/format": [ - { - "source": "npm:@commitlint/format", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/format", - "target": "npm:chalk@4.1.2", - "type": "static" - } - ], - "npm:@commitlint/is-ignored": [ - { - "source": "npm:@commitlint/is-ignored", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/is-ignored", - "target": "npm:semver@7.3.2", - "type": "static" - } - ], - "npm:@commitlint/lint": [ - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/is-ignored", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/parse", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/rules", - "type": "static" - }, - { - "source": "npm:@commitlint/lint", - "target": "npm:@commitlint/types", - "type": "static" - } - ], - "npm:@commitlint/load": [ - { - "source": "npm:@commitlint/load", - "target": "npm:@commitlint/execute-rule", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:@commitlint/resolve-extends", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:@commitlint/types", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/load", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@commitlint/load@19.5.0": [ - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/config-validator", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/execute-rule@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/resolve-extends@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:@commitlint/types@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:cosmiconfig@9.0.0", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:cosmiconfig-typescript-loader", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:@commitlint/load@19.5.0", - "target": "npm:lodash.uniq", - "type": "static" - } - ], - "npm:@commitlint/parse": [ - { - "source": "npm:@commitlint/parse", - "target": "npm:conventional-changelog-angular@5.0.13", - "type": "static" - }, - { - "source": "npm:@commitlint/parse", - "target": "npm:conventional-commits-parser@3.2.4", - "type": "static" - } - ], - "npm:@commitlint/read": [ - { - "source": "npm:@commitlint/read", - "target": "npm:@commitlint/top-level", - "type": "static" - }, - { - "source": "npm:@commitlint/read", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@commitlint/read", - "target": "npm:git-raw-commits", - "type": "static" - } - ], - "npm:@commitlint/resolve-extends": [ - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends", - "target": "npm:resolve-global", - "type": "static" - } - ], - "npm:@commitlint/resolve-extends@19.5.0": [ - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:@commitlint/config-validator", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:@commitlint/types@19.5.0", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:global-directory", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:import-meta-resolve", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:lodash.mergewith", - "type": "static" - }, - { - "source": "npm:@commitlint/resolve-extends@19.5.0", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@commitlint/rules": [ - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/ensure", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/message", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/to-lines", - "type": "static" - }, - { - "source": "npm:@commitlint/rules", - "target": "npm:@commitlint/types", - "type": "static" - } - ], - "npm:@commitlint/top-level": [ - { - "source": "npm:@commitlint/top-level", - "target": "npm:find-up@5.0.0", - "type": "static" - } - ], - "npm:@commitlint/types@19.5.0": [ - { - "source": "npm:@commitlint/types@19.5.0", - "target": "npm:@types/conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:@commitlint/types@19.5.0", - "target": "npm:chalk@5.3.0", - "type": "static" - } - ], - "npm:@dabh/diagnostics": [ - { - "source": "npm:@dabh/diagnostics", - "target": "npm:colorspace", - "type": "static" - }, - { - "source": "npm:@dabh/diagnostics", - "target": "npm:enabled", - "type": "static" - }, - { - "source": "npm:@dabh/diagnostics", - "target": "npm:kuler", - "type": "static" - } - ], - "npm:@emnapi/core": [ - { - "source": "npm:@emnapi/core", - "target": "npm:@emnapi/wasi-threads", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emnapi/runtime": [ - { - "source": "npm:@emnapi/runtime", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emnapi/wasi-threads": [ - { - "source": "npm:@emnapi/wasi-threads", - "target": "npm:tslib", - "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", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:@formatjs/cli": [ - { - "source": "npm:@formatjs/cli", - "target": "npm:@formatjs/ts-transformer", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/loud-rejection", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@types/node@14.18.63", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:@vue/compiler-sfc", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:intl-messageformat-parser", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:loud-rejection", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@formatjs/cli", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@formatjs/ecma402-abstract": [ - { - "source": "npm:@formatjs/ecma402-abstract", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@formatjs/ts-transformer": [ - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:intl-messageformat-parser", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@formatjs/ts-transformer", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@isaacs/cliui": [ - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "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:@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@4.1.2", - "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@4.1.2", - "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@29.7.0", - "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@29.7.0", - "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-utils": [ - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - } - ], - "npm:@jest/expect": [ - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot@29.7.0", - "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@4.1.2", - "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@6.0.3", - "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@4.1.2", - "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@4.0.2", - "type": "static" - } - ], - "npm:@jest/types@25.5.0": [ - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-reports@1.1.2", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/yargs@15.0.19", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:chalk@3.0.0", - "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@4.1.2", - "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:@kwsites/file-exists": [ - { - "source": "npm:@kwsites/file-exists", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@lerna/child-process": [ - { - "source": "npm:@lerna/child-process", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:strong-log-transformer", - "type": "static" - } - ], - "npm:@lerna/create": [ - { - "source": "npm:@lerna/create", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@octokit/plugin-enterprise-rest", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:byte-size", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:cmd-shim", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:conventional-changelog-core", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:conventional-recommended-bump", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:libnpmpublish", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:node-fetch@2.6.7", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:nx@16.10.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-map-series", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-queue", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:read-cmd-shim", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:rimraf@4.4.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:uuid@9.0.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:write-pkg", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:@manypkg/find-root": [ - { - "source": "npm:@manypkg/find-root", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:@types/node@12.20.55", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:fs-extra@8.1.0", - "type": "static" - } - ], - "npm:@manypkg/get-packages": [ - { - "source": "npm:@manypkg/get-packages", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:@changesets/types@4.1.0", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:@manypkg/find-root", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@manypkg/get-packages", - "target": "npm:read-yaml-file", - "type": "static" - } - ], - "npm:@napi-rs/wasm-runtime": [ - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@tybys/wasm-util", - "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/fs@2.1.2": [ - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:@gar/promisify", - "type": "static" - }, - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:semver", - "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@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", - "type": "static" - } - ], - "npm:@npmcli/installed-package-contents": [ - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/move-file": [ - { - "source": "npm:@npmcli/move-file", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:@npmcli/promise-spawn": [ - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which", - "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", - "type": "static" - } - ], - "npm:@nrwl/devkit": [ - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - } - ], - "npm:@nrwl/tao@16.10.0": [ - { - "source": "npm:@nrwl/tao@16.10.0", - "target": "npm:nx@16.10.0", - "type": "static" - }, - { - "source": "npm:@nrwl/tao@16.10.0", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nrwl/tao": [ - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/devkit": [ - { - "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@2.3.6", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:nx@16.10.0", - "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:@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:is-plain-object@5.0.0", - "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/tsconfig", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - } - ], - "npm:@octokit/plugin-request-log": [ - { - "source": "npm:@octokit/plugin-request-log", - "target": "npm:@octokit/core", - "type": "static" - } - ], - "npm:@octokit/plugin-rest-endpoint-methods": [ - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/types@10.0.0", - "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/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:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/rest": [ - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - } - ], - "npm:@octokit/types@10.0.0": [ - { - "source": "npm:@octokit/types@10.0.0", - "target": "npm:@octokit/openapi-types", - "type": "static" - } - ], - "npm:@octokit/types": [ - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types", - "type": "static" - } - ], - "npm:@opentelemetry/api-logs": [ - { - "source": "npm:@opentelemetry/api-logs", - "target": "npm:@opentelemetry/api", - "type": "static" - } - ], - "npm:@opentelemetry/core": [ - { - "source": "npm:@opentelemetry/core", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/core", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - } - ], - "npm:@opentelemetry/instrumentation": [ - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:@opentelemetry/api-logs", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:@types/shimmer", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:import-in-the-middle", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:require-in-the-middle", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@opentelemetry/instrumentation", - "target": "npm:shimmer", - "type": "static" - } - ], - "npm:@opentelemetry/resources": [ - { - "source": "npm:@opentelemetry/resources", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/resources", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:@opentelemetry/resources", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - } - ], - "npm:@opentelemetry/sdk-trace-base": [ - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/resources", - "type": "static" - }, - { - "source": "npm:@opentelemetry/sdk-trace-base", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - } - ], - "npm:@parcel/watcher": [ - { - "source": "npm:@parcel/watcher", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:@parcel/watcher", - "target": "npm:node-gyp-build", - "type": "static" - } - ], - "npm:@prettier/plugin-xml": [ - { - "source": "npm:@prettier/plugin-xml", - "target": "npm:@xml-tools/parser@1.0.11", - "type": "static" - }, - { - "source": "npm:@prettier/plugin-xml", - "target": "npm:prettier", - "type": "static" - } - ], - "npm:@sap-ux/edmx-parser": [ - { - "source": "npm:@sap-ux/edmx-parser", - "target": "npm:xml-js", - "type": "static" - } - ], - "npm:@sap-ux/i18n": [ - { - "source": "npm:@sap-ux/i18n", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@sap-ux/i18n", - "target": "npm:vscode-languageserver-textdocument@1.0.7", - "type": "static" - }, - { - "source": "npm:@sap-ux/i18n", - "target": "npm:vscode-languageserver-types", - "type": "static" - } - ], - "npm:@sap-ux/project-access": [ - { - "source": "npm:@sap-ux/project-access", - "target": "npm:@sap-ux/i18n", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:@sap-ux/ui5-config", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:fast-xml-parser", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:findit2", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:mem-fs", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:mem-fs-editor", - "type": "static" - }, - { - "source": "npm:@sap-ux/project-access", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@sap-ux/ui5-config": [ - { - "source": "npm:@sap-ux/ui5-config", - "target": "npm:@sap-ux/yaml", - "type": "static" - }, - { - "source": "npm:@sap-ux/ui5-config", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@sap-ux/ui5-config", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@sap-ux/yaml": [ - { - "source": "npm:@sap-ux/yaml", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@sap-ux/yaml", - "target": "npm:yaml@2.2.2", - "type": "static" - } - ], - "npm:@sap/bas-sdk": [ - { - "source": "npm:@sap/bas-sdk", - "target": "npm:axios@1.7.4", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:@sap/bas-sdk", - "target": "npm:ws", - "type": "static" - } - ], - "npm:@sap/swa-for-sapbas-vsx@1.1.9": [ - { - "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "target": "npm:esm", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "target": "npm:lodash@4.17.20", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx@1.1.9", - "target": "npm:matomo-tracker", - "type": "static" - } - ], - "npm:@sap/swa-for-sapbas-vsx": [ - { - "source": "npm:@sap/swa-for-sapbas-vsx", - "target": "npm:@sap/bas-sdk", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx", - "target": "npm:applicationinsights", - "type": "static" - }, - { - "source": "npm:@sap/swa-for-sapbas-vsx", - "target": "npm:lodash", - "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:@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:@tybys/wasm-util": [ - { - "source": "npm:@tybys/wasm-util", - "target": "npm:tslib", - "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/conventional-commits-parser": [ - { - "source": "npm:@types/conventional-commits-parser", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/fs-extra": [ - { - "source": "npm:@types/fs-extra", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/glob": [ - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/graceful-fs": [ - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/is-ci": [ - { - "source": "npm:@types/is-ci", - "target": "npm:ci-info", - "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@1.1.2": [ - { - "source": "npm:@types/istanbul-reports@1.1.2", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports@1.1.2", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/istanbul-reports": [ - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/jest-specific-snapshot": [ - { - "source": "npm:@types/jest-specific-snapshot", - "target": "npm:@types/jest", - "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/klaw-sync": [ - { - "source": "npm:@types/klaw-sync", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/loud-rejection": [ - { - "source": "npm:@types/loud-rejection", - "target": "npm:loud-rejection", - "type": "static" - } - ], - "npm:@types/node-fetch": [ - { - "source": "npm:@types/node-fetch", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:form-data", - "type": "static" - } - ], - "npm:@types/rimraf": [ - { - "source": "npm:@types/rimraf", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:@types/rimraf", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/sinon-chai": [ - { - "source": "npm:@types/sinon-chai", - "target": "npm:@types/chai", - "type": "static" - }, - { - "source": "npm:@types/sinon-chai", - "target": "npm:@types/sinon", - "type": "static" - } - ], - "npm:@types/sinon": [ - { - "source": "npm:@types/sinon", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - } - ], - "npm:@types/yargs@15.0.19": [ - { - "source": "npm:@types/yargs@15.0.19", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yargs": [ - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin": [ - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:regexpp", - "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/eslint-plugin", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/experimental-utils": [ - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils@3.0.0", - "type": "static" - } - ], - "npm:@typescript-eslint/parser": [ - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager@4.14.0", - "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/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager@4.14.0": [ - { - "source": "npm:@typescript-eslint/scope-manager@4.14.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@4.14.0", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager": [ - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys@4.33.0", - "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:lodash", - "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/typescript-estree", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree@4.33.0": [ - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:@typescript-eslint/visitor-keys@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@4.33.0", - "target": "npm:typescript", - "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:@typescript-eslint/visitor-keys@4.33.0": [ - { - "source": "npm:@typescript-eslint/visitor-keys@4.33.0", - "target": "npm:@typescript-eslint/types@4.33.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@4.33.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@vscode-logging/logger": [ - { - "source": "npm:@vscode-logging/logger", - "target": "npm:@vscode-logging/types", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:fast-safe-stringify", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:lodash@4.17.20", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:stacktrace-js", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:streamroller", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:winston", - "type": "static" - }, - { - "source": "npm:@vscode-logging/logger", - "target": "npm:winston-transport", - "type": "static" - } - ], - "npm:@vue/compiler-core": [ - { - "source": "npm:@vue/compiler-core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:entities@4.5.0", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:@vue/compiler-dom": [ - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/shared", - "type": "static" - } - ], - "npm:@vue/compiler-sfc": [ - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-ssr", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:@vue/compiler-ssr": [ - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/shared", - "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:@xml-tools/ast-position": [ - { - "source": "npm:@xml-tools/ast-position", - "target": "npm:@xml-tools/ast", - "type": "static" - } - ], - "npm:@xml-tools/ast": [ - { - "source": "npm:@xml-tools/ast", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "npm:@xml-tools/ast", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "npm:@xml-tools/ast", - "target": "npm:lodash@4.17.15", - "type": "static" - } - ], - "npm:@xml-tools/common": [ - { - "source": "npm:@xml-tools/common", - "target": "npm:lodash@4.17.15", - "type": "static" - } - ], - "npm:@xml-tools/content-assist": [ - { - "source": "npm:@xml-tools/content-assist", - "target": "npm:@xml-tools/common", - "type": "static" - }, - { - "source": "npm:@xml-tools/content-assist", - "target": "npm:@xml-tools/parser", - "type": "static" - }, - { - "source": "npm:@xml-tools/content-assist", - "target": "npm:lodash@4.17.15", - "type": "static" - } - ], - "npm:@xml-tools/parser@1.0.11": [ - { - "source": "npm:@xml-tools/parser@1.0.11", - "target": "npm:chevrotain@7.1.1", - "type": "static" - } - ], - "npm:@xml-tools/parser": [ - { - "source": "npm:@xml-tools/parser", - "target": "npm:chevrotain", - "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@0.0.6": [ - { - "source": "npm:@zkochan/js-yaml@0.0.6", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:@zkochan/js-yaml": [ - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:JSONStream": [ - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - } - ], - "npm:acorn-globals": [ - { - "source": "npm:acorn-globals", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - } - ], - "npm:acorn-import-attributes": [ - { - "source": "npm:acorn-import-attributes", - "target": "npm:acorn@8.12.1", - "type": "static" - } - ], - "npm:acorn-jsx": [ - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:acorn-walk": [ - { - "source": "npm:acorn-walk", - "target": "npm:acorn@8.12.1", - "type": "static" - } - ], - "npm:agent-base": [ - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - } - ], - "npm:agentkeepalive": [ - { - "source": "npm:agentkeepalive", - "target": "npm:humanize-ms", - "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-keywords": [ - { - "source": "npm:ajv-keywords", - "target": "npm:ajv@6.12.6", - "type": "static" - } - ], - "npm:ajv": [ - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "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", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv@8.17.1": [ - { - "source": "npm:ajv@8.17.1", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:json-schema-traverse@1.0.0", - "type": "static" - }, - { - "source": "npm:ajv@8.17.1", - "target": "npm:require-from-string", - "type": "static" - } - ], - "npm:ansi-escapes": [ - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.21.3", - "type": "static" - } - ], - "npm:ansi-styles": [ - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - } - ], - "npm:ansi-styles@4.3.0": [ - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - } - ], - "npm:anymatch": [ - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:append-transform": [ - { - "source": "npm:append-transform", - "target": "npm:default-require-extensions", - "type": "static" - } - ], - "npm:applicationinsights": [ - { - "source": "npm:applicationinsights", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/core-rest-pipeline", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/core-util", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@azure/opentelemetry-instrumentation-azure-sdk", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@microsoft/applicationinsights-web-snippet", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/core", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/sdk-trace-base", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:@opentelemetry/semantic-conventions", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:cls-hooked", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:continuation-local-storage", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:diagnostic-channel", - "type": "static" - }, - { - "source": "npm:applicationinsights", - "target": "npm:diagnostic-channel-publishers", - "type": "static" - } - ], - "npm:are-we-there-yet": [ - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:argparse@1.0.10": [ - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "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:array-includes": [ - { - "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:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - } - ], - "npm:array.prototype.findlastindex": [ - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:array.prototype.flat": [ - { - "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" - } - ], - "npm:array.prototype.flatmap": [ - { - "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" - } - ], - "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:es-errors", - "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:async-hook-jl": [ - { - "source": "npm:async-hook-jl", - "target": "npm:stack-chain", - "type": "static" - } - ], - "npm:async-listener": [ - { - "source": "npm:async-listener", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:async-listener", - "target": "npm:shimmer", - "type": "static" - } - ], - "npm:available-typed-arrays": [ - { - "source": "npm:available-typed-arrays", - "target": "npm:possible-typed-array-names", - "type": "static" - } - ], - "npm:axios": [ - { - "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", - "type": "static" - } - ], - "npm:axios@1.7.4": [ - { - "source": "npm:axios@1.7.4", - "target": "npm:follow-redirects@1.15.9", - "type": "static" - }, - { - "source": "npm:axios@1.7.4", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.7.4", - "target": "npm:proxy-from-env", - "type": "static" - } - ], - "npm:axios@1.7.7": [ - { - "source": "npm:axios@1.7.7", - "target": "npm:follow-redirects@1.15.9", - "type": "static" - }, - { - "source": "npm:axios@1.7.7", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.7.7", - "target": "npm:proxy-from-env", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "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: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-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-class-static-block", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-attributes", - "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-private-property-in-object", - "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:bcrypt-pbkdf": [ - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:better-path-resolve": [ - { - "source": "npm:better-path-resolve", - "target": "npm:is-windows", - "type": "static" - } - ], - "npm:binary": [ - { - "source": "npm:binary", - "target": "npm:buffers", - "type": "static" - }, - { - "source": "npm:binary", - "target": "npm:chainsaw", - "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", - "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:brace-expansion@2.0.1": [ - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:braces": [ - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - } - ], - "npm:breakword": [ - { - "source": "npm:breakword", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:browser-resolve": [ - { - "source": "npm:browser-resolve", - "target": "npm:resolve@1.1.7", - "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@16.1.3": [ - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/fs@2.1.2", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:unique-filename@2.0.1", - "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.4.5", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass@7.1.2", - "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@10.0.6", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - } - ], - "npm:caching-transform": [ - { - "source": "npm:caching-transform", - "target": "npm:hasha", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:package-hash", - "type": "static" - }, - { - "source": "npm:caching-transform", - "target": "npm:write-file-atomic@3.0.3", - "type": "static" - } - ], - "npm:call-bind": [ - { - "source": "npm:call-bind", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-errors", - "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" - } - ], - "npm:camelcase-keys": [ - { - "source": "npm:camelcase-keys", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:map-obj", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:quick-lru", - "type": "static" - } - ], - "npm:chai": [ - { - "source": "npm:chai", - "target": "npm:assertion-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:check-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:deep-eql", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:get-func-name", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:pathval", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:chainsaw": [ - { - "source": "npm:chainsaw", - "target": "npm:traverse", - "type": "static" - } - ], - "npm:chalk": [ - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chalk@3.0.0": [ - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - } - ], - "npm:chalk@4.1.0": [ - { - "source": "npm:chalk@4.1.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - } - ], - "npm:chalk@4.1.2": [ - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - } - ], - "npm:check-error": [ - { - "source": "npm:check-error", - "target": "npm:get-func-name", - "type": "static" - } - ], - "npm:chevrotain@10.4.2": [ - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/cst-dts-gen", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:@chevrotain/utils", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:chevrotain@10.4.2", - "target": "npm:regexp-to-ast", - "type": "static" - } - ], - "npm:chevrotain": [ - { - "source": "npm:chevrotain", - "target": "npm:regexp-to-ast", - "type": "static" - } - ], - "npm:chevrotain@7.1.1": [ - { - "source": "npm:chevrotain@7.1.1", - "target": "npm:regexp-to-ast", - "type": "static" - } - ], - "npm:cli-color": [ - { - "source": "npm:cli-color", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:memoizee", - "type": "static" - }, - { - "source": "npm:cli-color", - "target": "npm:timers-ext", - "type": "static" - } - ], - "npm:cli-cursor": [ - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "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:cliui@6.0.0": [ - { - "source": "npm:cliui@6.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:wrap-ansi@6.2.0", - "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", - "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", - "type": "static" - } - ], - "npm:clone-deep": [ - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - } - ], - "npm:cloneable-readable": [ - { - "source": "npm:cloneable-readable", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:readable-stream@2.3.8", - "type": "static" - } - ], - "npm:cls-hooked": [ - { - "source": "npm:cls-hooked", - "target": "npm:async-hook-jl", - "type": "static" - }, - { - "source": "npm:cls-hooked", - "target": "npm:emitter-listener", - "type": "static" - }, - { - "source": "npm:cls-hooked", - "target": "npm:semver@5.7.2", - "type": "static" - } - ], - "npm:color-convert": [ - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:color-convert@2.0.1": [ - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - } - ], - "npm:color-string": [ - { - "source": "npm:color-string", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - } - ], - "npm:color": [ - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - } - ], - "npm:colorspace": [ - { - "source": "npm:colorspace", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:colorspace", - "target": "npm:text-hex", - "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:comment-json": [ - { - "source": "npm:comment-json", - "target": "npm:array-timsort", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:has-own-prop", - "type": "static" - }, - { - "source": "npm:comment-json", - "target": "npm:repeat-string", - "type": "static" - } - ], - "npm:commitizen": [ - { - "source": "npm:commitizen", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:cz-conventional-changelog", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:detect-indent", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:find-node-modules", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:find-root", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:glob@7.2.3", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:is-utf8", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:minimist@1.2.7", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:commitizen", - "target": "npm:strip-json-comments", - "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: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:continuation-local-storage": [ - { - "source": "npm:continuation-local-storage", - "target": "npm:async-listener", - "type": "static" - }, - { - "source": "npm:continuation-local-storage", - "target": "npm:emitter-listener", - "type": "static" - } - ], - "npm:conventional-changelog-angular@5.0.13": [ - { - "source": "npm:conventional-changelog-angular@5.0.13", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-angular@5.0.13", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-angular": [ - { - "source": "npm:conventional-changelog-angular", - "target": "npm:compare-func", - "type": "static" - } - ], - "npm:conventional-changelog-atom": [ - { - "source": "npm:conventional-changelog-atom", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-cli": [ - { - "source": "npm:conventional-changelog-cli", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:conventional-changelog", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-cli", - "target": "npm:tempfile", - "type": "static" - } - ], - "npm:conventional-changelog-codemirror": [ - { - "source": "npm:conventional-changelog-codemirror", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-conventionalcommits": [ - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-core@4.2.4": [ - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:conventional-changelog-writer@5.0.1", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:conventional-commits-parser@3.2.4", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:get-pkg-repo", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:git-remote-origin-url", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:git-semver-tags@4.1.1", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:q", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core@4.2.4", - "target": "npm:through2", - "type": "static" - } - ], - "npm:conventional-changelog-core": [ - { - "source": "npm:conventional-changelog-core", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-changelog-writer", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:get-pkg-repo", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-raw-commits@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-remote-origin-url", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg-up", - "type": "static" - } - ], - "npm:conventional-changelog-ember": [ - { - "source": "npm:conventional-changelog-ember", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-eslint": [ - { - "source": "npm:conventional-changelog-eslint", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-express": [ - { - "source": "npm:conventional-changelog-express", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-jquery": [ - { - "source": "npm:conventional-changelog-jquery", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-jshint": [ - { - "source": "npm:conventional-changelog-jshint", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-jshint", - "target": "npm:q", - "type": "static" - } - ], - "npm:conventional-changelog-writer@5.0.1": [ - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:conventional-commits-filter@2.0.7", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:split", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer@5.0.1", - "target": "npm:through2", - "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:dateformat", - "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@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:split", - "type": "static" - } - ], - "npm:conventional-changelog": [ - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-angular@5.0.13", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-atom", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-codemirror", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-conventionalcommits", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-core@4.2.4", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-ember", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-eslint", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-express", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-jquery", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-jshint", - "type": "static" - }, - { - "source": "npm:conventional-changelog", - "target": "npm:conventional-changelog-preset-loader", - "type": "static" - } - ], - "npm:conventional-commits-filter@2.0.7": [ - { - "source": "npm:conventional-commits-filter@2.0.7", - "target": "npm:lodash.ismatch", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter@2.0.7", - "target": "npm:modify-values", - "type": "static" - } - ], - "npm:conventional-commits-filter": [ - { - "source": "npm:conventional-commits-filter", - "target": "npm:lodash.ismatch", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter", - "target": "npm:modify-values", - "type": "static" - } - ], - "npm:conventional-commits-parser@3.2.4": [ - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser@3.2.4", - "target": "npm:through2", - "type": "static" - } - ], - "npm:conventional-commits-parser": [ - { - "source": "npm:conventional-commits-parser", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:split2", - "type": "static" - } - ], - "npm:conventional-recommended-bump": [ - { - "source": "npm:conventional-recommended-bump", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-changelog-preset-loader@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-raw-commits@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:meow@8.1.2", - "type": "static" - } - ], - "npm:cosmiconfig-typescript-loader": [ - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:cosmiconfig@9.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader", - "target": "npm:typescript", - "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:cosmiconfig": [ - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "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:typescript", - "type": "static" - } - ], - "npm:cosmiconfig@9.0.0": [ - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:coveralls": [ - { - "source": "npm:coveralls", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:lcov-parse", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:log-driver", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:coveralls", - "target": "npm:request", - "type": "static" - } - ], - "npm:create-jest": [ - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk@4.1.2", - "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@29.7.0", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - } - ], - "npm:cross-env": [ - { - "source": "npm:cross-env", - "target": "npm:cross-spawn", - "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", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "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", - "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", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - } - ], - "npm:cross-spawn": [ - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command@2.0.0", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - } - ], - "npm:cssstyle": [ - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - } - ], - "npm:csv": [ - { - "source": "npm:csv", - "target": "npm:csv-generate", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:csv-parse", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:csv-stringify", - "type": "static" - }, - { - "source": "npm:csv", - "target": "npm:stream-transform", - "type": "static" - } - ], - "npm:currently-unhandled": [ - { - "source": "npm:currently-unhandled", - "target": "npm:array-find-index", - "type": "static" - } - ], - "npm:cz-conventional-changelog": [ - { - "source": "npm:cz-conventional-changelog", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:commitizen", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:conventional-commit-types", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:lodash.map", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:longest", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "npm:cz-conventional-changelog", - "target": "npm:@commitlint/load@19.5.0", - "type": "static" - } - ], - "npm:d": [ - { - "source": "npm:d", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:type", - "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@11.0.0", - "type": "static" - } - ], - "npm:data-view-buffer": [ - { - "source": "npm:data-view-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:is-data-view", - "type": "static" - } - ], - "npm:data-view-byte-length": [ - { - "source": "npm:data-view-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:is-data-view", - "type": "static" - } - ], - "npm:data-view-byte-offset": [ - { - "source": "npm:data-view-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:is-data-view", - "type": "static" - } - ], - "npm:debug@3.2.7": [ - { - "source": "npm:debug@3.2.7", - "target": "npm:ms@2.1.3", - "type": "static" - } - ], - "npm:debug@4.3.4": [ - { - "source": "npm:debug@4.3.4", - "target": "npm:ms", - "type": "static" - } - ], - "npm:debug": [ - { - "source": "npm:debug", - "target": "npm:ms@2.1.3", - "type": "static" - } - ], - "npm:decamelize-keys": [ - { - "source": "npm:decamelize-keys", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:decamelize-keys", - "target": "npm:map-obj@1.0.1", - "type": "static" - } - ], - "npm:deep-eql": [ - { - "source": "npm:deep-eql", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:deep-equal-in-any-order": [ - { - "source": "npm:deep-equal-in-any-order", - "target": "npm:lodash.mapvalues", - "type": "static" - }, - { - "source": "npm:deep-equal-in-any-order", - "target": "npm:sort-any", - "type": "static" - } - ], - "npm:default-require-extensions": [ - { - "source": "npm:default-require-extensions", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:defaults": [ - { - "source": "npm:defaults", - "target": "npm:clone@1.0.4", - "type": "static" - } - ], - "npm:define-data-property": [ - { - "source": "npm:define-data-property", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "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:diagnostic-channel-publishers": [ - { - "source": "npm:diagnostic-channel-publishers", - "target": "npm:diagnostic-channel", - "type": "static" - } - ], - "npm:diagnostic-channel": [ - { - "source": "npm:diagnostic-channel", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:dir-glob": [ - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:doctrine@2.1.0": [ - { - "source": "npm:doctrine@2.1.0", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:doctrine": [ - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:domexception": [ - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:dot-prop": [ - { - "source": "npm:dot-prop", - "target": "npm:is-obj@2.0.0", - "type": "static" - } - ], - "npm:dotenv-expand": [ - { - "source": "npm:dotenv-expand", - "target": "npm:dotenv", - "type": "static" - } - ], - "npm:duplexer2": [ - { - "source": "npm:duplexer2", - "target": "npm:readable-stream@2.3.8", - "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:ejs": [ - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - } - ], - "npm:emitter-listener": [ - { - "source": "npm:emitter-listener", - "target": "npm:shimmer", - "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:enhanced-resolve": [ - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:enquirer@2.3.6": [ - { - "source": "npm:enquirer@2.3.6", - "target": "npm:ansi-colors", - "type": "static" - } - ], - "npm:enquirer": [ - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:error-ex": [ - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - } - ], - "npm:error-stack-parser": [ - { - "source": "npm:error-stack-parser", - "target": "npm:stackframe", - "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:data-view-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-object-atoms", - "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-data-view", - "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-define-property": [ - { - "source": "npm:es-define-property", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:es-object-atoms": [ - { - "source": "npm:es-object-atoms", - "target": "npm:es-errors", - "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-shim-unscopables": [ - { - "source": "npm:es-shim-unscopables", - "target": "npm:hasown@2.0.0", - "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:es5-ext": [ - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - } - ], - "npm:es6-iterator": [ - { - "source": "npm:es6-iterator", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es6-symbol", - "type": "static" - } - ], - "npm:es6-symbol": [ - { - "source": "npm:es6-symbol", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:ext", - "type": "static" - } - ], - "npm:es6-weak-map": [ - { - "source": "npm:es6-weak-map", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-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@5.3.0", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:eslint-config-prettier": [ - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - } - ], - "npm:eslint-import-resolver-node": [ - { - "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@2.15.1", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:eslint-import-resolver-typescript": [ - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:eslint-plugin-import", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:eslint-module-utils": [ - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:eslint-import-resolver-typescript", - "type": "static" - } - ], - "npm:eslint-plugin-eslint-comments": [ - { - "source": "npm:eslint-plugin-eslint-comments", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint-plugin-eslint-comments", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-eslint-comments", - "target": "npm:ignore", - "type": "static" - } - ], - "npm:eslint-plugin-import": [ - { - "source": "npm:eslint-plugin-import", - "target": "npm:@rtsao/scc", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.findlastindex", - "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", - "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:hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module@2.15.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.groupby", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.15.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:eslint-utils": [ - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - } - ], - "npm:eslint-utils@3.0.0": [ - { - "source": "npm:eslint-utils@3.0.0", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-utils@3.0.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:eslint": [ - { - "source": "npm:eslint", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk@4.1.2", - "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:enquirer", - "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:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore@4.0.6", - "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@3.14.1", - "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", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:semver", - "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:table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:v8-compile-cache", - "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@1.3.0", - "type": "static" - } - ], - "npm:esquery": [ - { - "source": "npm:esquery", - "target": "npm:estraverse@5.3.0", - "type": "static" - } - ], - "npm:esrecurse": [ - { - "source": "npm:esrecurse", - "target": "npm:estraverse@5.3.0", - "type": "static" - } - ], - "npm:event-emitter": [ - { - "source": "npm:event-emitter", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:event-emitter", - "target": "npm:es5-ext", - "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", - "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" - } - ], - "npm:execa": [ - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals@2.1.0", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream@2.0.1", - "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:execa@5.1.1": [ - { - "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@2.1.0", - "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" - } - ], - "npm:expand-tilde": [ - { - "source": "npm:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - } - ], - "npm:expect@25.5.0": [ - { - "source": "npm:expect@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-matcher-utils@25.5.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-message-util@25.5.0", - "type": "static" - }, - { - "source": "npm:expect@25.5.0", - "target": "npm:jest-regex-util@25.2.6", - "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:ext": [ - { - "source": "npm:ext", - "target": "npm:type@2.7.2", - "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: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:fast-xml-parser": [ - { - "source": "npm:fast-xml-parser", - "target": "npm:strnum", - "type": "static" - } - ], - "npm:fastq": [ - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - } - ], - "npm:fb-watchman": [ - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - } - ], - "npm:figures": [ - { - "source": "npm:figures", - "target": "npm:escape-string-regexp", - "type": "static" - } - ], - "npm:file-entry-cache": [ - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - } - ], - "npm:filelist": [ - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.6", - "type": "static" - } - ], - "npm:fill-keys": [ - { - "source": "npm:fill-keys", - "target": "npm:is-object", - "type": "static" - }, - { - "source": "npm:fill-keys", - "target": "npm:merge-descriptors", - "type": "static" - } - ], - "npm:fill-range": [ - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "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-node-modules": [ - { - "source": "npm:find-node-modules", - "target": "npm:findup-sync", - "type": "static" - }, - { - "source": "npm:find-node-modules", - "target": "npm:merge", - "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:find-up": [ - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "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:find-yarn-workspace-root2": [ - { - "source": "npm:find-yarn-workspace-root2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root2", - "target": "npm:pkg-dir", - "type": "static" - } - ], - "npm:findup-sync": [ - { - "source": "npm:findup-sync", - "target": "npm:detect-file", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:first-chunk-stream": [ - { - "source": "npm:first-chunk-stream", - "target": "npm:readable-stream@2.3.8", - "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", - "type": "static" - } - ], - "npm:foreground-child@3.3.0": [ - { - "source": "npm:foreground-child@3.3.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child@3.3.0", - "target": "npm:signal-exit@4.1.0", - "type": "static" - } - ], - "npm:form-data@2.3.3": [ - { - "source": "npm:form-data@2.3.3", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:mime-types", - "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: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:front-matter": [ - { - "source": "npm:front-matter", - "target": "npm:js-yaml@3.14.1", - "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-extra@11.2.0": [ - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-extra@7.0.1": [ - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:universalify@0.1.2", - "type": "static" - } - ], - "npm:fs-extra@8.1.0": [ - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "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:fs-minipass@2.1.0": [ - { - "source": "npm:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:fs-minipass": [ - { - "source": "npm:fs-minipass", - "target": "npm:minipass@7.1.2", - "type": "static" - } - ], - "npm:fstream": [ - { - "source": "npm:fstream", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:mkdirp@0.5.6", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:rimraf@2.7.1", - "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:gauge": [ - { - "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" - } - ], - "npm:get-intrinsic": [ - { - "source": "npm:get-intrinsic", - "target": "npm:es-errors", - "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@2.0.0", - "type": "static" - } - ], - "npm:get-pkg-repo": [ - { - "source": "npm:get-pkg-repo", - "target": "npm:@hutson/parse-repository-url", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:hosted-git-info@4.1.0", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:get-stream@5.2.0": [ - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - } - ], - "npm:get-symbol-description": [ - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:get-tsconfig": [ - { - "source": "npm:get-tsconfig", - "target": "npm:resolve-pkg-maps", - "type": "static" - } - ], - "npm:getpass": [ - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:git-raw-commits": [ - { - "source": "npm:git-raw-commits", - "target": "npm:dargs", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:through2", - "type": "static" - } - ], - "npm:git-raw-commits@3.0.0": [ - { - "source": "npm:git-raw-commits@3.0.0", - "target": "npm:dargs", - "type": "static" - }, - { - "source": "npm:git-raw-commits@3.0.0", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-raw-commits@3.0.0", - "target": "npm:split2", - "type": "static" - } - ], - "npm:git-remote-origin-url": [ - { - "source": "npm:git-remote-origin-url", - "target": "npm:gitconfiglocal", - "type": "static" - }, - { - "source": "npm:git-remote-origin-url", - "target": "npm:pify@2.3.0", - "type": "static" - } - ], - "npm:git-semver-tags@4.1.1": [ - { - "source": "npm:git-semver-tags@4.1.1", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-semver-tags@4.1.1", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:git-semver-tags": [ - { - "source": "npm:git-semver-tags", - "target": "npm:meow@8.1.2", - "type": "static" - }, - { - "source": "npm:git-semver-tags", - "target": "npm:semver", - "type": "static" - } - ], - "npm:git-up": [ - { - "source": "npm:git-up", - "target": "npm:is-ssh", - "type": "static" - }, - { - "source": "npm:git-up", - "target": "npm:parse-url", - "type": "static" - } - ], - "npm:git-url-parse": [ - { - "source": "npm:git-url-parse", - "target": "npm:git-up", - "type": "static" - } - ], - "npm:gitconfiglocal": [ - { - "source": "npm:gitconfiglocal", - "target": "npm:ini", - "type": "static" - } - ], - "npm:glob-parent": [ - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:glob-promise": [ - { - "source": "npm:glob-promise", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:glob-promise", - "target": "npm:glob", - "type": "static" - } - ], - "npm:glob@10.4.5": [ - { - "source": "npm:glob@10.4.5", - "target": "npm:foreground-child@3.3.0", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minipass@7.1.2", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:path-scurry", - "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: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", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob@7.2.3": [ - { - "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", - "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" - } - ], - "npm:glob@8.1.0": [ - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - } - ], - "npm:glob@9.3.5": [ - { - "source": "npm:glob@9.3.5", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minimatch@8.0.4", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minipass@4.2.8", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:global-directory": [ - { - "source": "npm:global-directory", - "target": "npm:ini@4.1.1", - "type": "static" - } - ], - "npm:global-dirs": [ - { - "source": "npm:global-dirs", - "target": "npm:ini", - "type": "static" - } - ], - "npm:global-modules": [ - { - "source": "npm:global-modules", - "target": "npm:global-prefix", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:global-prefix": [ - { - "source": "npm:global-prefix", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:which@1.3.1", - "type": "static" - } - ], - "npm:globals": [ - { - "source": "npm:globals", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:globalthis": [ - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:gopd", - "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: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", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - } - ], - "npm:har-validator": [ - { - "source": "npm:har-validator", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:har-validator", - "target": "npm:har-schema", - "type": "static" - } - ], - "npm:has-property-descriptors": [ - { - "source": "npm:has-property-descriptors", - "target": "npm:es-define-property", - "type": "static" - } - ], - "npm:has-tostringtag": [ - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:hasha": [ - { - "source": "npm:hasha", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:hasha", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:hasown@2.0.0": [ - { - "source": "npm:hasown@2.0.0", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:hasown": [ - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:homedir-polyfill": [ - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - } - ], - "npm:hosted-git-info": [ - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:hosted-git-info@4.1.0": [ - { - "source": "npm:hosted-git-info@4.1.0", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:hosted-git-info@6.1.1": [ - { - "source": "npm:hosted-git-info@6.1.1", - "target": "npm:lru-cache@7.18.3", - "type": "static" - } - ], - "npm:html-encoding-sniffer": [ - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "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", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy-agent@5.0.0": [ - { - "source": "npm:http-proxy-agent@5.0.0", - "target": "npm:@tootallnate/once@2.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@5.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@5.0.0", - "target": "npm:debug", - "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:https-proxy-agent": [ - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug@4.3.4", - "type": "static" - } - ], - "npm:humanize-ms": [ - { - "source": "npm:humanize-ms", - "target": "npm:ms@2.1.3", - "type": "static" - } - ], - "npm:i18next": [ - { - "source": "npm:i18next", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:iconv-lite": [ - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:iconv-lite@0.6.3": [ - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:ignore-walk": [ - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@5.1.6", - "type": "static" - } - ], - "npm:ignore-walk@6.0.5": [ - { - "source": "npm:ignore-walk@6.0.5", - "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-in-the-middle": [ - { - "source": "npm:import-in-the-middle", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:import-in-the-middle", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:import-in-the-middle", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:import-in-the-middle", - "target": "npm:module-details-from-path", - "type": "static" - } - ], - "npm:import-local@3.1.0": [ - { - "source": "npm:import-local@3.1.0", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local@3.1.0", - "target": "npm:resolve-cwd", - "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:init-package-json": [ - { - "source": "npm:init-package-json", - "target": "npm:npm-package-arg@10.1.0", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:promzard", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:inquirer": [ - { - "source": "npm:inquirer", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:chalk@4.1.2", - "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@5.4.1", - "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:internal-slot": [ - { - "source": "npm:internal-slot", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:intl-messageformat-parser": [ - { - "source": "npm:intl-messageformat-parser", - "target": "npm:@formatjs/ecma402-abstract", - "type": "static" - }, - { - "source": "npm:intl-messageformat-parser", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:ip-address": [ - { - "source": "npm:ip-address", - "target": "npm:jsbn@1.1.0", - "type": "static" - }, - { - "source": "npm:ip-address", - "target": "npm:sprintf-js@1.1.3", - "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" - } - ], - "npm:is-bigint": [ - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "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@2.0.0", - "type": "static" - } - ], - "npm:is-core-module@2.15.1": [ - { - "source": "npm:is-core-module@2.15.1", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:is-data-view": [ - { - "source": "npm:is-data-view", - "target": "npm:is-typed-array", - "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-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-ssh": [ - { - "source": "npm:is-ssh", - "target": "npm:protocols", - "type": "static" - } - ], - "npm:is-string": [ - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-subdir": [ - { - "source": "npm:is-subdir", - "target": "npm:better-path-resolve", - "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:istanbul-lib-hook": [ - { - "source": "npm:istanbul-lib-hook", - "target": "npm:append-transform", - "type": "static" - } - ], - "npm:istanbul-lib-instrument": [ - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "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.1", - "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:istanbul-lib-instrument@6.0.3": [ - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:istanbul-lib-processinfo": [ - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:archy", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:istanbul-lib-processinfo", - "target": "npm:uuid", - "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@7.2.0", - "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", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:jest-changed-files": [ - { - "source": "npm:jest-changed-files", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit@3.1.0", - "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@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.3", - "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@29.7.0", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit@3.1.0", - "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: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@4.1.2", - "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@29.7.0", - "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@17.7.2", - "type": "static" - } - ], - "npm:jest-config": [ - { - "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:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "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-config", - "target": "npm:ts-node", - "type": "static" - } - ], - "npm:jest-config@29.7.0": [ - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-environment-node@29.7.0", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:jest-config@29.7.0", - "target": "npm:ts-node", - "type": "static" - } - ], - "npm:jest-diff@25.5.0": [ - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:diff-sequences@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-diff@25.5.0", - "target": "npm:pretty-format@25.5.0", - "type": "static" - } - ], - "npm:jest-diff": [ - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "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@4.1.2", - "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-environment-node@29.7.0": [ - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node@29.7.0", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-esm-transformer": [ - { - "source": "npm:jest-esm-transformer", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-esm-transformer", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - } - ], - "npm:jest-extended": [ - { - "source": "npm:jest-extended", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-extended", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-extended", - "target": "npm:jest-get-type", - "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-junit": [ - { - "source": "npm:jest-junit", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:jest-junit", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:jest-junit", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:jest-junit", - "target": "npm:xml", - "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@25.5.0": [ - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:jest-diff@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@25.5.0", - "target": "npm:pretty-format@25.5.0", - "type": "static" - } - ], - "npm:jest-matcher-utils": [ - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk@4.1.2", - "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@25.5.0": [ - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util@25.5.0", - "target": "npm:stack-utils@1.0.5", - "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@2.0.3", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk@4.1.2", - "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@25.5.1", - "type": "static" - }, - { - "source": "npm:jest-pnp-resolver", - "target": "npm:jest-resolve", - "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@29.7.0", - "type": "static" - } - ], - "npm:jest-resolve@25.5.1": [ - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:browser-resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:read-pkg-up@7.0.1", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:realpath-native", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve@25.5.1", - "target": "npm:slash", - "type": "static" - } - ], - "npm:jest-resolve": [ - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "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", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "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@4.1.2", - "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@29.7.0", - "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@3.1.0", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "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@4.1.2", - "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@29.7.0", - "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/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@types/prettier@1.19.1", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type@25.2.6", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-resolve@25.5.1", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format@25.5.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:jest-snapshot@29.7.0": [ - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot@29.7.0", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:jest-sonar": [ - { - "source": "npm:jest-sonar", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:jest-sonar", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:jest-specific-snapshot": [ - { - "source": "npm:jest-specific-snapshot", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-specific-snapshot", - "target": "npm:jest-snapshot", - "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@4.1.2", - "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" - } - ], - "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@4.1.2", - "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@4.1.2", - "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@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: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: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:js-yaml@3.14.1": [ - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:js-yaml": [ - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:jsdom": [ - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn@8.12.1", - "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@5.0.0", - "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", - "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@11.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws@8.18.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:json-schema-ref-parser": [ - { - "source": "npm:json-schema-ref-parser", - "target": "npm:@apidevtools/json-schema-ref-parser", - "type": "static" - } - ], - "npm:json-schema-to-typescript": [ - { - "source": "npm:json-schema-to-typescript", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:@types/prettier", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:cli-color", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:glob-promise", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:json-schema-ref-parser", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:mz", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:json-schema-to-typescript", - "target": "npm:stdin", - "type": "static" - } - ], - "npm:json-stable-stringify": [ - { - "source": "npm:json-stable-stringify", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:jsonify", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:json5@1.0.2": [ - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:jsonfile@4.0.0": [ - { - "source": "npm:jsonfile@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jsonfile": [ - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "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:keyv": [ - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - } - ], - "npm:klaw-sync": [ - { - "source": "npm:klaw-sync", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:lerna": [ - { - "source": "npm:lerna", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@lerna/create", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/plugin-enterprise-rest", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:byte-size", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:chalk@4.1.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-core", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-recommended-bump", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:import-local@3.1.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmaccess", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmpublish", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:node-fetch@2.6.7", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:nx@16.10.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map-series", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-pipe", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-queue", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-waterfall", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:rimraf@4.4.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:uuid@9.0.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-pkg", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:levn": [ - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:libnpmaccess": [ - { - "source": "npm:libnpmaccess", - "target": "npm:npm-package-arg@10.1.0", - "type": "static" - }, - { - "source": "npm:libnpmaccess", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmpublish": [ - { - "source": "npm:libnpmpublish", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-package-arg@10.1.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:ssri@10.0.6", - "type": "static" - } - ], - "npm:lint-staged": [ - { - "source": "npm:lint-staged", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:log-symbols", - "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:please-upgrade-node", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:stringify-object", - "type": "static" - } - ], - "npm:listr2": [ - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:enquirer", - "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" - } - ], - "npm:load-json-file@4.0.0": [ - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:strip-bom@3.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", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:type-fest@0.6.0", - "type": "static" - } - ], - "npm:load-yaml-file": [ - { - "source": "npm:load-yaml-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:load-yaml-file", - "target": "npm:strip-bom@3.0.0", - "type": "static" - } - ], - "npm:loader-utils": [ - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "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:locate-path": [ - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "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:log-symbols": [ - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "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@6.2.0", - "type": "static" - } - ], - "npm:logform": [ - { - "source": "npm:logform", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:@types/triple-beam", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:fecha", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:logform", - "target": "npm:triple-beam", - "type": "static" - } - ], - "npm:loud-rejection": [ - { - "source": "npm:loud-rejection", - "target": "npm:currently-unhandled", - "type": "static" - }, - { - "source": "npm:loud-rejection", - "target": "npm:signal-exit", - "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:lru-cache@5.1.1": [ - { - "source": "npm:lru-cache@5.1.1", - "target": "npm:yallist@3.1.1", - "type": "static" - } - ], - "npm:lru-cache": [ - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:lru-queue": [ - { - "source": "npm:lru-queue", - "target": "npm:es5-ext", - "type": "static" - } - ], - "npm:magic-string": [ - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "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:make-dir": [ - { - "source": "npm:make-dir", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:make-dir@4.0.0": [ - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:make-fetch-happen@10.2.1": [ - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:cacache@16.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-fetch@2.1.2", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:make-fetch-happen": [ - { - "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@5.0.0", - "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@10.0.6", - "type": "static" - } - ], - "npm:makeerror": [ - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - } - ], - "npm:mem-fs-editor": [ - { - "source": "npm:mem-fs-editor", - "target": "npm:binaryextensions", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:mem-fs", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:mem-fs-editor", - "target": "npm:textextensions", - "type": "static" - } - ], - "npm:mem-fs": [ - { - "source": "npm:mem-fs", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:mem-fs", - "target": "npm:vinyl-file", - "type": "static" - } - ], - "npm:memoizee": [ - { - "source": "npm:memoizee", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:event-emitter", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:lru-queue", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:timers-ext", - "type": "static" - } - ], - "npm:meow": [ - { - "source": "npm:meow", - "target": "npm:@types/minimist", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:camelcase-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:decamelize-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:hard-rejection", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:minimist-options", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:normalize-package-data@2.5.0", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:read-pkg-up@7.0.1", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:trim-newlines", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:type-fest@0.13.1", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - } - ], - "npm:meow@8.1.2": [ - { - "source": "npm:meow@8.1.2", - "target": "npm:@types/minimist", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:camelcase-keys", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:decamelize-keys", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:hard-rejection", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:minimist-options", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:read-pkg-up@7.0.1", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:trim-newlines", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:type-fest@0.18.1", - "type": "static" - }, - { - "source": "npm:meow@8.1.2", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - } - ], - "npm:micromatch": [ - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:mime-types": [ - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:minimatch@3.0.5": [ - { - "source": "npm:minimatch@3.0.5", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch": [ - { - "source": "npm:minimatch", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch@5.1.6": [ - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:minimatch@8.0.4": [ - { - "source": "npm:minimatch@8.0.4", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:minimatch@9.0.3": [ - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:minimatch@9.0.5": [ - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:minimist-options": [ - { - "source": "npm:minimist-options", - "target": "npm:arrify@1.0.1", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:minipass-collect": [ - { - "source": "npm:minipass-collect", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-fetch@2.1.2": [ - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-fetch": [ - { - "source": "npm:minipass-fetch", - "target": "npm:minipass@7.1.2", - "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-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:minipass@3.3.6": [ - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:minizlib": [ - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:mkdirp@0.5.6": [ - { - "source": "npm:mkdirp@0.5.6", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:multimatch": [ - { - "source": "npm:multimatch", - "target": "npm:@types/minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-differ", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:mz": [ - { - "source": "npm:mz", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:thenify-all", - "type": "static" - } - ], - "npm:node-fetch@2.6.7": [ - { - "source": "npm:node-fetch@2.6.7", - "target": "npm:whatwg-url", - "type": "static" - } - ], - "npm:node-fetch": [ - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url", - "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", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen@10.2.1", - "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@2.0.2", - "type": "static" - } - ], - "npm:node-preload": [ - { - "source": "npm:node-preload", - "target": "npm:process-on-spawn", - "type": "static" - } - ], - "npm:nopt": [ - { - "source": "npm:nopt", - "target": "npm:abbrev", - "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:normalize-package-data": [ - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info@4.1.0", - "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:normalize-package-data@5.0.0": [ - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:npm-bundled": [ - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-bundled@3.0.1": [ - { - "source": "npm:npm-bundled@3.0.1", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:npm-install-checks": [ - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - } - ], - "npm:npm-package-arg@10.1.0": [ - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg@10.1.0", - "target": "npm:validate-npm-package-name", - "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:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name@3.0.0", - "type": "static" - } - ], - "npm:npm-packlist": [ - { - "source": "npm:npm-packlist", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-packlist@7.0.4": [ - { - "source": "npm:npm-packlist@7.0.4", - "target": "npm:ignore-walk@6.0.5", - "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@3.0.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg@10.1.0", - "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@10.1.0", - "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", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:chalk", - "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", - "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:npm-run-path": [ - { - "source": "npm:npm-run-path", - "target": "npm:path-key@3.1.1", - "type": "static" - } - ], - "npm:npmlog": [ - { - "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" - } - ], - "npm:nx@16.10.0": [ - { - "source": "npm:nx@16.10.0", - "target": "npm:@nrwl/tao@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@zkochan/js-yaml@0.0.6", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:dotenv@16.3.2", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:dotenv-expand@10.0.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:enquirer@2.3.6", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:minimatch@3.0.5", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:v8-compile-cache@2.3.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-darwin-arm64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-darwin-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-freebsd-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-linux-x64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "type": "static" - }, - { - "source": "npm:nx@16.10.0", - "target": "npm:@nx/nx-win32-x64-msvc@16.10.0", - "type": "static" - } - ], - "npm:nx": [ - { - "source": "npm:nx", - "target": "npm:@napi-rs/wasm-runtime", - "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.7.7", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "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@2.3.6", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:front-matter", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "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@9.0.3", - "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:ora", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.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:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser@21.1.1", - "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:nyc": [ - { - "source": "npm:nyc", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:caching-transform", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-hook", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-processinfo", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:node-preload", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:process-on-spawn", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:spawn-wrap", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:nyc", - "target": "npm:yargs", - "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.fromentries": [ - { - "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.fromentries", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:object.groupby": [ - { - "source": "npm:object.groupby", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.values": [ - { - "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-object-atoms", - "type": "static" - } - ], - "npm:once": [ - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:one-time": [ - { - "source": "npm:one-time", - "target": "npm:fn.name", - "type": "static" - } - ], - "npm:onetime": [ - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "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: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@4.1.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "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:ora@5.4.1": [ - { - "source": "npm:ora@5.4.1", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:p-filter": [ - { - "source": "npm:p-filter", - "target": "npm:p-map@2.1.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-limit": [ - { - "source": "npm:p-limit", - "target": "npm:p-try", - "type": "static" - } - ], - "npm:p-limit@3.1.0": [ - { - "source": "npm:p-limit@3.1.0", - "target": "npm:yocto-queue", - "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:p-locate": [ - { - "source": "npm:p-locate", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:p-locate@5.0.0": [ - { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit@3.1.0", - "type": "static" - } - ], - "npm:p-map@3.0.0": [ - { - "source": "npm:p-map@3.0.0", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:p-map": [ - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:p-queue": [ - { - "source": "npm:p-queue", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:p-queue", - "target": "npm:p-timeout", - "type": "static" - } - ], - "npm:p-timeout": [ - { - "source": "npm:p-timeout", - "target": "npm:p-finally", - "type": "static" - } - ], - "npm:p-waterfall": [ - { - "source": "npm:p-waterfall", - "target": "npm:p-reduce", - "type": "static" - } - ], - "npm:package-hash": [ - { - "source": "npm:package-hash", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:hasha", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:lodash.flattendeep", - "type": "static" - }, - { - "source": "npm:package-hash", - "target": "npm:release-zalgo", - "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@10.1.0", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist@7.0.4", - "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@10.0.6", - "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@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: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@2.3.1", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - } - ], - "npm:parse-path": [ - { - "source": "npm:parse-path", - "target": "npm:protocols", - "type": "static" - } - ], - "npm:parse-url": [ - { - "source": "npm:parse-url", - "target": "npm:parse-path", - "type": "static" - } - ], - "npm:parse5": [ - { - "source": "npm:parse5", - "target": "npm:entities@4.5.0", - "type": "static" - } - ], - "npm:path-scurry": [ - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@7.1.2", - "type": "static" - } - ], - "npm:path-type@3.0.0": [ - { - "source": "npm:path-type@3.0.0", - "target": "npm:pify@3.0.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: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:preferred-pm": [ - { - "source": "npm:preferred-pm", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:preferred-pm", - "target": "npm:find-yarn-workspace-root2", - "type": "static" - }, - { - "source": "npm:preferred-pm", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:preferred-pm", - "target": "npm:which-pm", - "type": "static" - } - ], - "npm:pretty-format@25.5.0": [ - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:react-is@16.13.1", - "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:process-on-spawn": [ - { - "source": "npm:process-on-spawn", - "target": "npm:fromentries", - "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:prompts": [ - { - "source": "npm:prompts", - "target": "npm:kleur@3.0.3", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - } - ], - "npm:promzard": [ - { - "source": "npm:promzard", - "target": "npm:read@3.0.1", - "type": "static" - } - ], - "npm:proxyquire": [ - { - "source": "npm:proxyquire", - "target": "npm:fill-keys", - "type": "static" - }, - { - "source": "npm:proxyquire", - "target": "npm:module-not-found-error", - "type": "static" - }, - { - "source": "npm:proxyquire", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:pump": [ - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - } - ], - "npm:randombytes": [ - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:read-package-json-fast": [ - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:read-package-json": [ - { - "source": "npm:read-package-json", - "target": "npm:glob@10.4.5", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:read-pkg-up": [ - { - "source": "npm:read-pkg-up", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg", - "type": "static" - } - ], - "npm:read-pkg-up@7.0.1": [ - { - "source": "npm:read-pkg-up@7.0.1", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:read-pkg-up@7.0.1", - "target": "npm:read-pkg@5.2.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up@7.0.1", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:read-pkg": [ - { - "source": "npm:read-pkg", - "target": "npm:load-json-file@4.0.0", - "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@5.2.0": [ - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:normalize-package-data@2.5.0", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:type-fest@0.6.0", - "type": "static" - } - ], - "npm:read-yaml-file": [ - { - "source": "npm:read-yaml-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:strip-bom@3.0.0", - "type": "static" - } - ], - "npm:read": [ - { - "source": "npm:read", - "target": "npm:mute-stream@1.0.0", - "type": "static" - } - ], - "npm:read@3.0.1": [ - { - "source": "npm:read@3.0.1", - "target": "npm:mute-stream@1.0.0", - "type": "static" - } - ], - "npm:readable-stream@2.3.8": [ - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readable-stream": [ - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.3.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:rechoir": [ - { - "source": "npm:rechoir", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:redent": [ - { - "source": "npm:redent", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:strip-indent", - "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:es-errors", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - } - ], - "npm:release-zalgo": [ - { - "source": "npm:release-zalgo", - "target": "npm:es6-error", - "type": "static" - } - ], - "npm:request": [ - { - "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@2.3.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:har-validator", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:http-signature", - "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", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tough-cookie@2.5.0", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:uuid@3.4.0", - "type": "static" - } - ], - "npm:require-in-the-middle": [ - { - "source": "npm:require-in-the-middle", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:require-in-the-middle", - "target": "npm:module-details-from-path", - "type": "static" - }, - { - "source": "npm:require-in-the-middle", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:resolve-cwd": [ - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:resolve-dir": [ - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - } - ], - "npm:resolve-global": [ - { - "source": "npm:resolve-global", - "target": "npm:global-dirs", - "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:restore-cursor": [ - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:rimraf@2.7.1": [ - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf": [ - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf@4.4.1": [ - { - "source": "npm:rimraf@4.4.1", - "target": "npm:glob@9.3.5", - "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", - "type": "static" - } - ], - "npm:safe-regex-test": [ - { - "source": "npm:safe-regex-test", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "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@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:semver": [ - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:semver@7.5.3": [ - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:semver@7.5.4": [ - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:serialize-javascript": [ - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "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:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "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:es-errors", - "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:shallow-clone": [ - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:shebang-command": [ - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - } - ], - "npm:shebang-command@2.0.0": [ - { - "source": "npm:shebang-command@2.0.0", - "target": "npm:shebang-regex", - "type": "static" - } - ], - "npm:shelljs": [ - { - "source": "npm:shelljs", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:shelljs", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:shelljs", - "target": "npm:rechoir", - "type": "static" - } - ], - "npm:shx": [ - { - "source": "npm:shx", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:shx", - "target": "npm:shelljs", - "type": "static" - } - ], - "npm:side-channel": [ - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "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" - }, - { - "source": "npm:sigstore", - "target": "npm:make-fetch-happen", - "type": "static" - } - ], - "npm:simple-git": [ - { - "source": "npm:simple-git", - "target": "npm:@kwsites/file-exists", - "type": "static" - }, - { - "source": "npm:simple-git", - "target": "npm:@kwsites/promise-deferred", - "type": "static" - }, - { - "source": "npm:simple-git", - "target": "npm:debug", - "type": "static" - } - ], - "npm:simple-swizzle": [ - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.2", - "type": "static" - } - ], - "npm:slice-ansi": [ - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@4.3.0", - "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:slice-ansi@4.0.0": [ - { - "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", - "type": "static" - } - ], - "npm:smartwrap": [ - { - "source": "npm:smartwrap", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:breakword", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:grapheme-splitter", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:smartwrap", - "target": "npm:yargs", - "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:socks": [ - { - "source": "npm:socks", - "target": "npm:ip-address", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - } - ], - "npm:sort-any": [ - { - "source": "npm:sort-any", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:sort-keys": [ - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj", - "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", - "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", - "type": "static" - } - ], - "npm:source-map-support@0.5.21": [ - { - "source": "npm:source-map-support@0.5.21", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.21", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:spawn-wrap": [ - { - "source": "npm:spawn-wrap", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:spawn-wrap", - "target": "npm:which@2.0.2", - "type": "static" - } - ], - "npm:spawndamnit": [ - { - "source": "npm:spawndamnit", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:spawndamnit", - "target": "npm:signal-exit", - "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:split2": [ - { - "source": "npm:split2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:split": [ - { - "source": "npm:split", - "target": "npm:through", - "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:ssri@10.0.6": [ - { - "source": "npm:ssri@10.0.6", - "target": "npm:minipass@7.1.2", - "type": "static" - } - ], - "npm:ssri": [ - { - "source": "npm:ssri", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:stack-generator": [ - { - "source": "npm:stack-generator", - "target": "npm:stackframe", - "type": "static" - } - ], - "npm:stack-utils@1.0.5": [ - { - "source": "npm:stack-utils@1.0.5", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - } - ], - "npm:stack-utils": [ - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - } - ], - "npm:stacktrace-gps": [ - { - "source": "npm:stacktrace-gps", - "target": "npm:source-map@0.5.6", - "type": "static" - }, - { - "source": "npm:stacktrace-gps", - "target": "npm:stackframe", - "type": "static" - } - ], - "npm:stacktrace-js": [ - { - "source": "npm:stacktrace-js", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stack-generator", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stacktrace-gps", - "type": "static" - } - ], - "npm:stream-transform": [ - { - "source": "npm:stream-transform", - "target": "npm:mixme", - "type": "static" - } - ], - "npm:streamroller": [ - { - "source": "npm:streamroller", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:fs-extra@8.1.0", - "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-replace-loader": [ - { - "source": "npm:string-replace-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:string-replace-loader", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:string-replace-loader", - "target": "npm:webpack", - "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: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: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" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:es-object-atoms", - "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" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-object-atoms", - "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-object-atoms", - "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-object-atoms", - "type": "static" - } - ], - "npm:string_decoder": [ - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:string_decoder@1.3.0": [ - { - "source": "npm:string_decoder@1.3.0", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:stringify-object": [ - { - "source": "npm:stringify-object", - "target": "npm:get-own-enumerable-property-symbols", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-regexp", - "type": "static" - } - ], - "npm:strip-ansi": [ - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi-cjs": [ - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi@7.1.0": [ - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.1.0", - "type": "static" - } - ], - "npm:strip-bom-buf": [ - { - "source": "npm:strip-bom-buf", - "target": "npm:is-utf8", - "type": "static" - } - ], - "npm:strip-bom-stream": [ - { - "source": "npm:strip-bom-stream", - "target": "npm:first-chunk-stream", - "type": "static" - }, - { - "source": "npm:strip-bom-stream", - "target": "npm:strip-bom@2.0.0", - "type": "static" - } - ], - "npm:strip-bom@2.0.0": [ - { - "source": "npm:strip-bom@2.0.0", - "target": "npm:is-utf8", - "type": "static" - } - ], - "npm:strip-indent": [ - { - "source": "npm:strip-indent", - "target": "npm:min-indent", - "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:supports-color": [ - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-color@7.2.0": [ - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag@4.0.0", - "type": "static" - } - ], - "npm:supports-color@8.1.1": [ - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag@4.0.0", - "type": "static" - } - ], - "npm:table": [ - { - "source": "npm:table", - "target": "npm:ajv@8.17.1", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:lodash.truncate", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:slice-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:strip-ansi", - "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", - "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@3.3.6", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:tempfile": [ - { - "source": "npm:tempfile", - "target": "npm:temp-dir@2.0.0", - "type": "static" - }, - { - "source": "npm:tempfile", - "target": "npm:uuid@3.4.0", - "type": "static" - } - ], - "npm:terser-webpack-plugin": [ - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:esbuild", - "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", - "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:terser-webpack-plugin", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:terser": [ - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn@8.12.1", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support@0.5.21", - "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:thenify-all": [ - { - "source": "npm:thenify-all", - "target": "npm:thenify", - "type": "static" - } - ], - "npm:thenify": [ - { - "source": "npm:thenify", - "target": "npm:any-promise", - "type": "static" - } - ], - "npm:through2@2.0.5": [ - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:through2": [ - { - "source": "npm:through2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:timers-ext": [ - { - "source": "npm:timers-ext", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:timers-ext", - "target": "npm:next-tick", - "type": "static" - } - ], - "npm:tmp-promise": [ - { - "source": "npm:tmp-promise", - "target": "npm:tmp", - "type": "static" - } - ], - "npm:tmp@0.0.33": [ - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:tmp": [ - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:to-regex-range": [ - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - } - ], - "npm:tough-cookie@2.5.0": [ - { - "source": "npm:tough-cookie@2.5.0", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie@2.5.0", - "target": "npm:punycode", - "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@3.0.0": [ - { - "source": "npm:tr46@3.0.0", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:ts-jest": [ - { - "source": "npm:ts-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest", - "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:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ], - "npm:ts-node": [ - { - "source": "npm:ts-node", - "target": "npm:arg", - "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:source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - } - ], - "npm:tsconfig-paths@3.15.0": [ - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:strip-bom@3.0.0", - "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:tsutils": [ - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:tty-table": [ - { - "source": "npm:tty-table", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:csv", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:smartwrap", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:tty-table", - "target": "npm:yargs@17.7.2", - "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: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:typed-array-buffer": [ - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:es-errors", - "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:gopd", - "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:gopd", - "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:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:possible-typed-array-names", - "type": "static" - } - ], - "npm:typedarray-to-buffer": [ - { - "source": "npm:typedarray-to-buffer", - "target": "npm:is-typedarray", - "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:unique-filename@2.0.1": [ - { - "source": "npm:unique-filename@2.0.1", - "target": "npm:unique-slug@3.0.0", - "type": "static" - } - ], - "npm:unique-filename": [ - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - } - ], - "npm:unique-slug@3.0.0": [ - { - "source": "npm:unique-slug@3.0.0", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unique-slug": [ - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unzipper": [ - { - "source": "npm:unzipper", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:binary", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:buffer-indexof-polyfill", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:duplexer2", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:fstream", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:listenercount", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:setimmediate", - "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:update-ts-references": [ - { - "source": "npm:update-ts-references", - "target": "npm:@formatjs/cli", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:comment-json", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:update-ts-references", - "target": "npm:mkdirp", - "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: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@3.0.0": [ - { - "source": "npm:validate-npm-package-name@3.0.0", - "target": "npm:builtins@1.0.3", - "type": "static" - } - ], - "npm:validate-npm-package-name": [ - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "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:vinyl-file": [ - { - "source": "npm:vinyl-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:pify@2.3.0", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:strip-bom-buf", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:strip-bom-stream", - "type": "static" - }, - { - "source": "npm:vinyl-file", - "target": "npm:vinyl", - "type": "static" - } - ], - "npm:vinyl": [ - { - "source": "npm:vinyl", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-buffer", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-stats", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:cloneable-readable", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:replace-ext", - "type": "static" - } - ], - "npm:vscode-languageclient": [ - { - "source": "npm:vscode-languageclient", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:vscode-languageclient", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:vscode-languageclient", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - } - ], - "npm:vscode-languageserver-protocol": [ - { - "source": "npm:vscode-languageserver-protocol", - "target": "npm:vscode-jsonrpc", - "type": "static" - }, - { - "source": "npm:vscode-languageserver-protocol", - "target": "npm:vscode-languageserver-types", - "type": "static" - } - ], - "npm:vscode-languageserver": [ - { - "source": "npm:vscode-languageserver", - "target": "npm:vscode-languageserver-protocol", - "type": "static" - } - ], - "npm:vscode-test": [ - { - "source": "npm:vscode-test", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:vscode-test", - "target": "npm:unzipper", - "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:wcwidth": [ - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - } - ], - "npm:webpack": [ - { - "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@8.12.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-attributes", - "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", - "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@2.3.1", - "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", - "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:whatwg-encoding": [ - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - } - ], - "npm:whatwg-url@11.0.0": [ - { - "source": "npm:whatwg-url@11.0.0", - "target": "npm:tr46@3.0.0", - "type": "static" - }, - { - "source": "npm:whatwg-url@11.0.0", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:whatwg-url": [ - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions@3.0.1", - "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-pm": [ - { - "source": "npm:which-pm", - "target": "npm:load-yaml-file", - "type": "static" - }, - { - "source": "npm:which-pm", - "target": "npm:path-exists", - "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:which@1.3.1": [ - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:which@2.0.2": [ - { - "source": "npm:which@2.0.2", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:which": [ - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:wide-align": [ - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:winston-transport": [ - { - "source": "npm:winston-transport", - "target": "npm:logform", - "type": "static" - }, - { - "source": "npm:winston-transport", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:winston-transport", - "target": "npm:triple-beam", - "type": "static" - } - ], - "npm:winston-transport@4.6.0": [ - { - "source": "npm:winston-transport@4.6.0", - "target": "npm:logform", - "type": "static" - }, - { - "source": "npm:winston-transport@4.6.0", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:winston-transport@4.6.0", - "target": "npm:triple-beam", - "type": "static" - } - ], - "npm:winston": [ - { - "source": "npm:winston", - "target": "npm:@dabh/diagnostics", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:logform", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:one-time", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:stack-trace", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:triple-beam", - "type": "static" - }, - { - "source": "npm:winston", - "target": "npm:winston-transport@4.6.0", - "type": "static" - } - ], - "npm:wrap-ansi@6.2.0": [ - { - "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" - } - ], - "npm:wrap-ansi": [ - { - "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" - } - ], - "npm:wrap-ansi-cjs": [ - { - "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" - } - ], - "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:write-file-atomic@2.4.3": [ - { - "source": "npm:write-file-atomic@2.4.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic@2.4.3", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@2.4.3", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:write-file-atomic@3.0.3": [ - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:typedarray-to-buffer", - "type": "static" - } - ], - "npm:write-file-atomic@4.0.2": [ - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:signal-exit", - "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@4.1.0", - "type": "static" - } - ], - "npm:write-json-file": [ - { - "source": "npm:write-json-file", - "target": "npm:detect-indent@5.0.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:write-file-atomic@2.4.3", - "type": "static" - } - ], - "npm:write-pkg": [ - { - "source": "npm:write-pkg", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:type-fest@0.4.1", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:write-json-file", - "type": "static" - } - ], - "npm:xml-js": [ - { - "source": "npm:xml-js", - "target": "npm:sax", - "type": "static" - } - ], - "npm:yargs-parser@18.1.3": [ - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - } - ], - "npm:yargs": [ - { - "source": "npm:yargs", - "target": "npm:cliui@6.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:find-up", - "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:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser@18.1.3", - "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@5.0.8", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - } - ], - "npm:yargs@17.7.2": [ - { - "source": "npm:yargs@17.7.2", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:y18n@5.0.8", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ] - }, - "version": "6.0" -} diff --git a/nx.json b/nx.json new file mode 100644 index 000000000..83ce3ceb5 --- /dev/null +++ b/nx.json @@ -0,0 +1,54 @@ +{ + "tasksRunnerOptions": { + "default": { + "runner": "@nrwl/nx-cloud", + "options": { + "cacheableOperations": ["compile", "lint", "test"], + "accessToken": "", + "canTrackAnalytics": false, + "showUsageWarnings": true + } + } + }, + "namedInputs": { + "default": ["{projectRoot}/**/*"], + "prod": ["!{projectRoot}/**/*.test.ts"] + }, + "targetDefaults": { + "build:quick": { + "dependsOn": ["compile"], + "outputs": ["{projectRoot}/lib"] + }, + "dev": { + "dependsOn": ["^compile"], + "outputs": ["{projectRoot}/lib"] + }, + "compile": { + "outputs": ["{projectRoot}/lib"] + }, + "test": { + "inputs": [ + "default", + "^prod", + "{workspaceRoot}/jest.base.js", + "{projectRoot}/jest.config.js" + ], + "outputs": ["{projectRoot}/coverage"] + }, + + "build:extension": { + "outputs": ["{projectRoot}/*.vsix"] + }, + + "lint": { + "inputs": ["default", "^prod"] + }, + "lint:fix": { + "inputs": ["default", "^prod"] + }, + "clean": { + "inputs": [] + } + }, + "defaultBase": "master" +} diff --git a/nx.json_noused b/nx.json_noused deleted file mode 100644 index c9808b2a8..000000000 --- a/nx.json_noused +++ /dev/null @@ -1,68 +0,0 @@ -{ - "tasksRunnerOptions": { - "default": { - "runner": "@nrwl/nx-cloud", - "options": { - "cacheableOperations": [ - - ], - "accessToken": "ZjFiYzA4OTYtYjFlNS00NTI2LTk4OTktNWZiYTAyMGE0ZGRmfHJlYWQtd3JpdGU=", - "canTrackAnalytics": false, - "showUsageWarnings": true - } - } - }, - "namedInputs": { - "default": ["{projectRoot}/**/*"], - "prod": [ - "!{projectRoot}/**/*.spec.tsx", - "!{projectRoot}/**/*.test.tsx", - "!{projectRoot}/**/*.spec.ts", - "!{projectRoot}/**/*.test.ts" - ] - }, - "targetDefaults": { - "build": { - "dependsOn": ["^build"], - "outputs": [ - "{projectRoot}/dist", - "{projectRoot}/lib", - "{projectRoot}/storybook" - ] - }, - "test": { - "inputs": [ - "default", - "^prod", - "{workspaceRoot}/jest.base.js", - "{projectRoot}/jest.config.js" - ], - "outputs": ["{projectRoot}/coverage"] - }, - "test:integration": { - "inputs": [ - "default", - "^prod", - "{workspaceRoot}/jest.base.js", - "{projectRoot}/jest.config.js" - ], - "outputs": ["{projectRoot}/playwright-report"] - }, - "build:extension": { - "outputs": ["{projectRoot}/*.vsix"] - }, - "build:storybook": { - "outputs": ["{projectRoot}/storybook"] - }, - "lint": { - "inputs": ["default", "^prod"] - }, - "lint:fix": { - "inputs": ["default", "^prod"] - }, - "clean": { - "inputs": [] - } - }, - "defaultBase": "main" -} diff --git a/package.json b/package.json index 70e91763b..904e2297e 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,9 @@ "name": "@ui5-language-assistant/root", "private": true, "scripts": { - "build:quick": "nx run-many --target=compile --all", - "release:version": "lerna version --force-publish", - "release:publish": "lerna publish from-package --yes", + "build:quick": "nx run-many --target=compile --all --parallel=1", + "release:version": "pnpm version --force-publish", + "release:publish": "pnpm publish from-package --yes", "ci": "npm-run-all format:validate ci:subpackages legal:*", "compile:watch": "pnpm run clean && tsc --build --watch", "format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore", @@ -26,58 +26,19 @@ "clean:nx:cache": "nx reset" }, "devDependencies": { - "@changesets/cli": "2.26.0", "@commitlint/cli": "11.0.0", "@commitlint/config-conventional": "11.0.0", "@types/fs-extra": "9.0.11", "@types/jest": "29.2.6", "@types/jest-specific-snapshot": "0.5.5", "@types/node": "18.11.9", - "@types/klaw-sync": "6.0.0", - "@types/lodash": "4.14.168", - "@types/rimraf": "3.0.0", - "@types/sinon": "9.0.10", - "@types/sinon-chai": "3.2.5", - "chai": "4.2.0", - "conventional-changelog-cli": "2.1.1", - "coveralls": "3.1.0", - "cz-conventional-changelog": "3.3.0", - "deep-equal-in-any-order": "1.0.28", - "eslint": "7.18.0", - "eslint-config-prettier": "7.2.0", - "eslint-plugin-eslint-comments": "3.2.0", - "eslint-import-resolver-typescript": "3.6.1", - "fs-extra": "10.1.0", - "glob": "7.1.6", - "husky": "8.0.1", - "i18next": "19.0.2", - "jest": "29.5.0", - "jest-config": "29.5.0", - "jest-environment-node": "29.5.0", - "jest-environment-jsdom": "^29.5.0", - "jest-esm-transformer": "1.0.0", "jest-extended": "3.2.3", - "jest-junit": "15.0.0", - "jest-sonar": "0.2.16", - "jest-specific-snapshot": "3.0.0", - "klaw-sync": "6.0.0", - "lerna": "^7.0.2", - "lint-staged": "10.5.3", - "make-dir": "3.1.0", - "mock-fs": "^5.2.0", - "npm-run-all": "4.1.5", - "nyc": "15.1.0", - "prettier": "2.8.7", "rimraf": "3.0.2", - "shx": "0.3.3", - "simple-git": "3.12.0", - "ts-jest": "29.0.5", - "ts-node": "8.5.2", - "source-map-support": "0.5.19", "typescript": "4.9.4", "esbuild": "0.17.12", "nx": "^19.7.4", - "update-ts-references": "3.2.1" + "update-ts-references": "3.2.1", + "lint-staged": "10.5.3" }, "engines": { "npm": "please-use-pnpm", @@ -107,12 +68,5 @@ "@commitlint/config-conventional" ] }, - "jest": { - "setupFilesAfterEnv": [ - "jest-extended/all" - ] - }, - "dependencies": { - "@sap/swa-for-sapbas-vsx": "^2.0.7" - } + "dependencies": {} } diff --git a/packages/constant/package.json b/packages/constant/package.json index b9eb7c340..0562f669d 100644 --- a/packages/constant/package.json +++ b/packages/constant/package.json @@ -17,7 +17,7 @@ "devDependencies": {}, "scripts": { "ci": "npm-run-all clean compile lint", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/context/package.json b/packages/context/package.json index d992d4a34..0145315b2 100644 --- a/packages/context/package.json +++ b/packages/context/package.json @@ -48,8 +48,7 @@ "@ui5-language-assistant/test-utils": "workspace:*", "rimraf": "3.0.2", "tmp-promise": "3.0.2", - "mock-fs": "^5.2.0", - "proxyquire": "2.1.3" + "mock-fs": "^5.2.0" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 4bebc2f68..d3c09bbc2 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -57,13 +57,10 @@ "devDependencies": { "@ui5-language-assistant/semantic-model-types": "workspace:*", "@ui5-language-assistant/test-utils": "workspace:*", - "@ui5-language-assistant/binding-parser": "workspace:*", "vscode-languageserver-types": "3.17.2", - "@types/js-yaml": "4.0.5", - "@types/node-fetch": "2.5.10", - "@types/semver": "7.3.12", - "@types/tmp": "0.2.0", - "string-replace-loader": "3.1.0" + "@vscode-logging/types": "0.1.4", + "chai": "4.2.0", + "prettier": "2.8.7" }, "scripts": { "ci": "npm-run-all clean compile lint coverage bundle", diff --git a/packages/logger/package.json b/packages/logger/package.json index ea7f5ef04..e259e03c4 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -24,7 +24,7 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/logic-utils/package.json b/packages/logic-utils/package.json index 2cef06c0a..5a79a085d 100644 --- a/packages/logic-utils/package.json +++ b/packages/logic-utils/package.json @@ -31,11 +31,12 @@ "@ui5-language-assistant/semantic-model": "workspace:*", "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/parser": "1.0.7", - "vscode-languageserver-types": "3.17.2" + "vscode-languageserver-types": "3.17.2", + "@types/lodash": "4.14.168" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/semantic-model/package.json b/packages/semantic-model/package.json index d1d58691d..80bad8e82 100644 --- a/packages/semantic-model/package.json +++ b/packages/semantic-model/package.json @@ -23,13 +23,14 @@ "@ui5-language-assistant/constant": "workspace:*", "ajv": "6.12.3", "deep-freeze-strict": "1.1.1", - "fs-extra": "10.1.0", "lodash": "4.17.21" }, "devDependencies": { "@types/deep-freeze-strict": "1.1.0", "@ui5-language-assistant/test-utils": "workspace:*", - "json-schema-to-typescript": "10.0.3" + "json-schema-to-typescript": "10.0.3", + "chai": "4.2.0", + "@types/lodash": "4.14.168" }, "scripts": { "ci": "npm-run-all clean generate-json-api compile lint coverage", diff --git a/packages/settings/package.json b/packages/settings/package.json index 36d791569..ba728e3d7 100644 --- a/packages/settings/package.json +++ b/packages/settings/package.json @@ -25,7 +25,7 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/user-facing-text/package.json b/packages/user-facing-text/package.json index 87ede5072..b9dbc6784 100644 --- a/packages/user-facing-text/package.json +++ b/packages/user-facing-text/package.json @@ -20,7 +20,7 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index 2900cf5d0..e15c94709 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -10,7 +10,7 @@ }, "scripts": { "ci": "node ./scripts/copy", - "clean": "rimraf ./dist ./lib ./coverage ./nyc_output *.vsix NOTICE LICENSE" + "clean": "rimraf ./dist ./lib ./coverage *.vsix NOTICE LICENSE" }, "devDependencies": { "fs-extra": "10.1.0" diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index bb5f84713..7c5130888 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -157,7 +157,6 @@ "dependencies": { "@ui5-language-assistant/language-server": "workspace:*", "prettier": "2.8.7", - "@prettier/plugin-xml": "2.2.0", "vscode-languageclient": "8.0.2" }, "devDependencies": { @@ -169,7 +168,6 @@ "@ui5-language-assistant/logic-utils": "workspace:*", "@ui5-language-assistant/settings": "workspace:*", "@ui5-language-assistant/test-framework": "workspace:*", - "@ui5-language-assistant/user-facing-text": "workspace:*", "@ui5-language-assistant/binding": "workspace:*", "@vscode-logging/types": "0.1.4", "@xml-tools/ast": "5.0.0", @@ -184,8 +182,6 @@ "ts-node": "8.5.2", "vscode-languageserver-types": "3.17.2", "vscode-ui5-language-assistant": "workspace:^", - "vscode-uri": "2.1.2", - "vscode-languageserver": "8.0.2", - "vscode-test": "1.6.1" + "vscode-uri": "2.1.2" } } diff --git a/packages/xml-views-definition/package.json b/packages/xml-views-definition/package.json index 8a247604c..0dc8f57b1 100644 --- a/packages/xml-views-definition/package.json +++ b/packages/xml-views-definition/package.json @@ -30,7 +30,7 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/xml-views-tooltip/package.json b/packages/xml-views-tooltip/package.json index 0d0114021..74fd8e0ac 100644 --- a/packages/xml-views-tooltip/package.json +++ b/packages/xml-views-tooltip/package.json @@ -40,7 +40,7 @@ }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/packages/xml-views-validation/package.json b/packages/xml-views-validation/package.json index 038d12f56..87bbc85e6 100644 --- a/packages/xml-views-validation/package.json +++ b/packages/xml-views-validation/package.json @@ -41,11 +41,12 @@ "@ui5-language-assistant/test-framework": "workspace:*", "@ui5-language-assistant/test-utils": "workspace:*", "@xml-tools/parser": "1.0.7", - "@types/deep-freeze-strict": "1.1.0" + "@types/deep-freeze-strict": "1.1.0", + "@types/lodash": "4.14.168" }, "scripts": { "ci": "npm-run-all clean compile lint coverage", - "clean": "rimraf ./lib ./coverage ./nyc_output", + "clean": "rimraf ./lib ./coverage", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c5af714a7..7febde8b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,14 +7,7 @@ settings: importers: .: - dependencies: - '@sap/swa-for-sapbas-vsx': - specifier: ^2.0.7 - version: 2.0.7 devDependencies: - '@changesets/cli': - specifier: 2.26.0 - version: 2.26.0 '@commitlint/cli': specifier: 11.0.0 version: 11.0.0 @@ -30,144 +23,30 @@ importers: '@types/jest-specific-snapshot': specifier: 0.5.5 version: 0.5.5 - '@types/klaw-sync': - specifier: 6.0.0 - version: 6.0.0 - '@types/lodash': - specifier: 4.14.168 - version: 4.14.168 '@types/node': specifier: 18.11.9 version: 18.11.9 - '@types/rimraf': - specifier: 3.0.0 - version: 3.0.0 - '@types/sinon': - specifier: 9.0.10 - version: 9.0.10 - '@types/sinon-chai': - specifier: 3.2.5 - version: 3.2.5 - chai: - specifier: 4.2.0 - version: 4.2.0 - conventional-changelog-cli: - specifier: 2.1.1 - version: 2.1.1 - coveralls: - specifier: 3.1.0 - version: 3.1.0 - cz-conventional-changelog: - specifier: 3.3.0 - version: 3.3.0(@types/node@18.11.9)(typescript@4.9.4) - deep-equal-in-any-order: - specifier: 1.0.28 - version: 1.0.28 esbuild: specifier: 0.17.12 version: 0.17.12 - eslint: - specifier: 7.18.0 - version: 7.18.0 - eslint-config-prettier: - specifier: 7.2.0 - version: 7.2.0(eslint@7.18.0) - eslint-import-resolver-typescript: - specifier: 3.6.1 - version: 3.6.1(eslint-plugin-import@2.31.0)(eslint@7.18.0) - eslint-plugin-eslint-comments: - specifier: 3.2.0 - version: 3.2.0(eslint@7.18.0) - fs-extra: - specifier: 10.1.0 - version: 10.1.0 - glob: - specifier: 7.1.6 - version: 7.1.6 - husky: - specifier: 8.0.1 - version: 8.0.1 - i18next: - specifier: 19.0.2 - version: 19.0.2 - jest: - specifier: 29.5.0 - version: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) - jest-config: - specifier: 29.5.0 - version: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) - jest-environment-jsdom: - specifier: ^29.5.0 - version: 29.7.0 - jest-environment-node: - specifier: 29.5.0 - version: 29.5.0 - jest-esm-transformer: - specifier: 1.0.0 - version: 1.0.0 jest-extended: specifier: 3.2.3 - version: 3.2.3(jest@29.5.0) - jest-junit: - specifier: 15.0.0 - version: 15.0.0 - jest-sonar: - specifier: 0.2.16 - version: 0.2.16 - jest-specific-snapshot: - specifier: 3.0.0 - version: 3.0.0(jest@29.5.0) - klaw-sync: - specifier: 6.0.0 - version: 6.0.0 - lerna: - specifier: ^7.0.2 - version: 7.4.2 + version: 3.2.3 lint-staged: specifier: 10.5.3 version: 10.5.3 - make-dir: - specifier: 3.1.0 - version: 3.1.0 - mock-fs: - specifier: ^5.2.0 - version: 5.2.0 - npm-run-all: - specifier: 4.1.5 - version: 4.1.5 nx: specifier: ^19.7.4 version: 19.8.4 - nyc: - specifier: 15.1.0 - version: 15.1.0 - prettier: - specifier: 2.8.7 - version: 2.8.7 rimraf: specifier: 3.0.2 version: 3.0.2 - shx: - specifier: 0.3.3 - version: 0.3.3 - simple-git: - specifier: 3.12.0 - version: 3.12.0 - source-map-support: - specifier: 0.5.19 - version: 0.5.19 - ts-jest: - specifier: 29.0.5 - version: 29.0.5(@babel/core@7.25.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4) - ts-node: - specifier: 8.5.2 - version: 8.5.2(typescript@4.9.4) typescript: specifier: 4.9.4 version: 4.9.4 update-ts-references: specifier: 3.2.1 - version: 3.2.1(ts-jest@29.0.5) + version: 3.2.1 packages/binding: dependencies: @@ -350,9 +229,6 @@ importers: mock-fs: specifier: ^5.2.0 version: 5.2.0 - proxyquire: - specifier: 2.1.3 - version: 2.1.3 rimraf: specifier: 3.0.2 version: 3.0.2 @@ -497,7 +373,7 @@ importers: version: 19.0.2 jest-extended: specifier: 3.2.3 - version: 3.2.3(jest@29.5.0) + version: 3.2.3 klaw-sync: specifier: 6.0.0 version: 6.0.0 @@ -514,30 +390,21 @@ importers: specifier: 2.1.2 version: 2.1.2 devDependencies: - '@types/js-yaml': - specifier: 4.0.5 - version: 4.0.5 - '@types/node-fetch': - specifier: 2.5.10 - version: 2.5.10 - '@types/semver': - specifier: 7.3.12 - version: 7.3.12 - '@types/tmp': - specifier: 0.2.0 - version: 0.2.0 - '@ui5-language-assistant/binding-parser': - specifier: workspace:* - version: link:../binding-parser '@ui5-language-assistant/semantic-model-types': specifier: workspace:* version: link:../semantic-model-types '@ui5-language-assistant/test-utils': specifier: workspace:* version: link:../../test-packages/test-utils - string-replace-loader: - specifier: 3.1.0 - version: 3.1.0(webpack@5.95.0) + '@vscode-logging/types': + specifier: 0.1.4 + version: 0.1.4 + chai: + specifier: 4.2.0 + version: 4.2.0 + prettier: + specifier: 2.8.7 + version: 2.8.7 vscode-languageserver-types: specifier: 3.17.2 version: 3.17.2 @@ -588,6 +455,9 @@ importers: specifier: 1.1.0 version: 1.1.0 devDependencies: + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 '@ui5-language-assistant/semantic-model': specifier: workspace:* version: link:../semantic-model @@ -621,9 +491,6 @@ importers: deep-freeze-strict: specifier: 1.1.1 version: 1.1.1 - fs-extra: - specifier: 10.1.0 - version: 10.1.0 lodash: specifier: 4.17.21 version: 4.17.21 @@ -631,9 +498,15 @@ importers: '@types/deep-freeze-strict': specifier: 1.1.0 version: 1.1.0 + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 '@ui5-language-assistant/test-utils': specifier: workspace:* version: link:../../test-packages/test-utils + chai: + specifier: 4.2.0 + version: 4.2.0 json-schema-to-typescript: specifier: 10.0.3 version: 10.0.3 @@ -668,9 +541,6 @@ importers: packages/vscode-ui5-language-assistant: dependencies: - '@prettier/plugin-xml': - specifier: 2.2.0 - version: 2.2.0 '@ui5-language-assistant/language-server': specifier: workspace:* version: link:../language-server @@ -708,9 +578,6 @@ importers: '@ui5-language-assistant/test-framework': specifier: workspace:* version: link:../../test-packages/framework - '@ui5-language-assistant/user-facing-text': - specifier: workspace:* - version: link:../user-facing-text '@vscode-logging/types': specifier: 0.1.4 version: 0.1.4 @@ -744,15 +611,9 @@ importers: ts-node: specifier: 8.5.2 version: 8.5.2(typescript@4.9.4) - vscode-languageserver: - specifier: 8.0.2 - version: 8.0.2 vscode-languageserver-types: specifier: 3.17.2 version: 3.17.2 - vscode-test: - specifier: 1.6.1 - version: 1.6.1 vscode-ui5-language-assistant: specifier: workspace:^ version: 'link:' @@ -965,6 +826,9 @@ importers: '@types/deep-freeze-strict': specifier: 1.1.0 version: 1.1.0 + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 '@ui5-language-assistant/semantic-model': specifier: workspace:* version: link:../semantic-model @@ -1069,6 +933,9 @@ importers: specifier: 1.1.0 version: 1.1.0 devDependencies: + '@types/lodash': + specifier: 4.14.168 + version: 4.14.168 '@types/node-fetch': specifier: 2.5.10 version: 2.5.10 @@ -1078,13 +945,7 @@ packages: /@aashutoshrathi/word-wrap@1.2.6: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} - - /@ampproject/remapping@2.3.0: - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 + dev: false /@apidevtools/json-schema-ref-parser@9.0.9: resolution: {integrity: sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==} @@ -1095,90 +956,6 @@ packages: js-yaml: 4.1.0 dev: true - /@azure/abort-controller@1.1.0: - resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} - engines: {node: '>=12.0.0'} - dependencies: - tslib: 2.7.0 - dev: false - - /@azure/abort-controller@2.1.2: - resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==} - engines: {node: '>=18.0.0'} - dependencies: - tslib: 2.7.0 - dev: false - - /@azure/core-auth@1.8.0: - resolution: {integrity: sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==} - engines: {node: '>=18.0.0'} - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-util': 1.2.0 - tslib: 2.7.0 - dev: false - - /@azure/core-rest-pipeline@1.10.1: - resolution: {integrity: sha512-Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==} - engines: {node: '>=14.0.0'} - dependencies: - '@azure/abort-controller': 1.1.0 - '@azure/core-auth': 1.8.0 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.2.0 - '@azure/logger': 1.1.4 - form-data: 4.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - tslib: 2.7.0 - uuid: 8.3.2 - transitivePeerDependencies: - - supports-color - dev: false - - /@azure/core-tracing@1.2.0: - resolution: {integrity: sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==} - engines: {node: '>=18.0.0'} - dependencies: - tslib: 2.7.0 - dev: false - - /@azure/core-util@1.2.0: - resolution: {integrity: sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==} - engines: {node: '>=14.0.0'} - dependencies: - '@azure/abort-controller': 1.1.0 - tslib: 2.7.0 - dev: false - - /@azure/logger@1.1.4: - resolution: {integrity: sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==} - engines: {node: '>=18.0.0'} - dependencies: - tslib: 2.7.0 - dev: false - - /@azure/opentelemetry-instrumentation-azure-sdk@1.0.0-beta.6: - resolution: {integrity: sha512-JP6TJ7vDNX6r0gN2+EQBINTNqZ86frl1RAj5STtbLP1ClgIhcdXXb0hvq7CuEOv7InrroHMDoEYG80OQcWChug==} - engines: {node: '>=18.0.0'} - dependencies: - '@azure/core-tracing': 1.2.0 - '@azure/logger': 1.1.4 - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - tslib: 2.7.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/code-frame@7.24.7: - resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.1.0 - /@babel/code-frame@7.25.7: resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} engines: {node: '>=6.9.0'} @@ -1186,119 +963,15 @@ packages: '@babel/highlight': 7.25.7 picocolors: 1.1.0 - /@babel/compat-data@7.25.7: - resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==} - engines: {node: '>=6.9.0'} - - /@babel/core@7.25.7: - resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.25.7 - '@babel/generator': 7.25.7 - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) - '@babel/helpers': 7.25.7 - '@babel/parser': 7.25.7 - '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 - convert-source-map: 2.0.0 - debug: 4.3.7 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - /@babel/generator@7.25.7: - resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.25.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 - - /@babel/helper-compilation-targets@7.25.7: - resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.25.7 - '@babel/helper-validator-option': 7.25.7 - browserslist: 4.24.0 - lru-cache: 5.1.1 - semver: 6.3.1 - - /@babel/helper-module-imports@7.25.7: - resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 - transitivePeerDependencies: - - supports-color - - /@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7): - resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-simple-access': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7 - transitivePeerDependencies: - - supports-color - - /@babel/helper-plugin-utils@7.25.7: - resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} - engines: {node: '>=6.9.0'} - - /@babel/helper-simple-access@7.25.7: - resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.25.7 - '@babel/types': 7.25.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-string-parser@7.25.7: resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} engines: {node: '>=6.9.0'} - - /@babel/helper-validator-identifier@7.24.7: - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} - engines: {node: '>=6.9.0'} + dev: true /@babel/helper-validator-identifier@7.25.7: resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.25.7: - resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==} - engines: {node: '>=6.9.0'} - - /@babel/helpers@7.25.7: - resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.25.7 - '@babel/types': 7.25.7 - - /@babel/highlight@7.24.7: - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.0 - /@babel/highlight@7.25.7: resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} engines: {node: '>=6.9.0'} @@ -1308,438 +981,75 @@ packages: js-tokens: 4.0.0 picocolors: 1.1.0 - /@babel/parser@7.25.7: - resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} + /@babel/parser@7.25.8: + resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.25.7 - - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.7): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.7): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.7): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/types': 7.25.8 + dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.7): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + /@babel/runtime@7.23.8: + resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + regenerator-runtime: 0.14.1 - /@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.7): - resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==} + /@babel/types@7.25.8: + resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.7): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-string-parser': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + to-fast-properties: 2.0.0 + dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.7): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + /@chevrotain/cst-dts-gen@10.4.2: + resolution: {integrity: sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==} dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + '@chevrotain/gast': 10.4.2 + '@chevrotain/types': 10.4.2 + lodash: 4.17.21 + dev: false - /@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.7): - resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + /@chevrotain/gast@10.4.2: + resolution: {integrity: sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==} dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + '@chevrotain/types': 10.4.2 + lodash: 4.17.21 + dev: false - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.7): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + /@chevrotain/types@10.4.2: + resolution: {integrity: sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==} + dev: false - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.7): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + /@chevrotain/utils@10.4.2: + resolution: {integrity: sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==} + dev: false - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.7): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 + /@colors/colors@1.6.0: + resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} + engines: {node: '>=0.1.90'} + dev: false - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.7): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + /@commitlint/cli@11.0.0: + resolution: {integrity: sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==} + engines: {node: '>=v10.22.0'} + hasBin: true dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.7): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.7): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.7): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.7): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.7): - resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - - /@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7): - resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.25.7 - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-simple-access': 7.25.7 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/runtime@7.23.8: - resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.14.1 - - /@babel/template@7.25.7: - resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.25.7 - '@babel/parser': 7.25.7 - '@babel/types': 7.25.7 - - /@babel/traverse@7.25.7: - resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.25.7 - '@babel/generator': 7.25.7 - '@babel/parser': 7.25.7 - '@babel/template': 7.25.7 - '@babel/types': 7.25.7 - debug: 4.3.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - /@babel/types@7.25.7: - resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 - - /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - - /@changesets/apply-release-plan@6.1.4: - resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/config': 2.3.1 - '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 2.0.0 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - detect-indent: 6.1.0 - fs-extra: 7.0.1 - lodash.startcase: 4.4.0 - outdent: 0.5.0 - prettier: 2.8.7 - resolve-from: 5.0.0 - semver: 7.5.4 - dev: true - - /@changesets/assemble-release-plan@5.2.4: - resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.6 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - semver: 7.5.4 - dev: true - - /@changesets/changelog-git@0.1.14: - resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==} - dependencies: - '@changesets/types': 5.2.1 - dev: true - - /@changesets/cli@2.26.0: - resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} - hasBin: true - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/apply-release-plan': 6.1.4 - '@changesets/assemble-release-plan': 5.2.4 - '@changesets/changelog-git': 0.1.14 - '@changesets/config': 2.3.1 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.6 - '@changesets/get-release-plan': 3.0.17 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@changesets/write': 0.2.3 - '@manypkg/get-packages': 1.1.3 - '@types/is-ci': 3.0.4 - '@types/semver': 6.2.7 - ansi-colors: 4.1.3 - chalk: 2.4.2 - enquirer: 2.4.1 - external-editor: 3.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - is-ci: 3.0.1 - meow: 6.1.1 - outdent: 0.5.0 - p-limit: 2.3.0 - preferred-pm: 3.1.4 - resolve-from: 5.0.0 - semver: 5.7.2 - spawndamnit: 2.0.0 - term-size: 2.2.1 - tty-table: 4.2.3 - dev: true - - /@changesets/config@2.3.1: - resolution: {integrity: sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==} - dependencies: - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.6 - '@changesets/logger': 0.0.5 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - micromatch: 4.0.5 - dev: true - - /@changesets/errors@0.1.4: - resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==} - dependencies: - extendable-error: 0.1.7 - dev: true - - /@changesets/get-dependents-graph@1.3.6: - resolution: {integrity: sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==} - dependencies: - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 7.5.4 - dev: true - - /@changesets/get-release-plan@3.0.17: - resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/assemble-release-plan': 5.2.4 - '@changesets/config': 2.3.1 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - dev: true - - /@changesets/get-version-range-type@0.3.2: - resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} - dev: true - - /@changesets/git@2.0.0: - resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - is-subdir: 1.2.0 - micromatch: 4.0.5 - spawndamnit: 2.0.0 - dev: true - - /@changesets/logger@0.0.5: - resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==} - dependencies: - chalk: 2.4.2 - dev: true - - /@changesets/parse@0.3.16: - resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} - dependencies: - '@changesets/types': 5.2.1 - js-yaml: 3.14.1 - dev: true - - /@changesets/pre@1.0.14: - resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - dev: true - - /@changesets/read@0.5.9: - resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.16 - '@changesets/types': 5.2.1 - chalk: 2.4.2 - fs-extra: 7.0.1 - p-filter: 2.1.0 - dev: true - - /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: true - - /@changesets/types@5.2.1: - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} - dev: true - - /@changesets/write@0.2.3: - resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/types': 5.2.1 - fs-extra: 7.0.1 - human-id: 1.0.2 - prettier: 2.8.7 - dev: true - - /@chevrotain/cst-dts-gen@10.4.2: - resolution: {integrity: sha512-0+4bNjlndNWMoVLH/+y4uHnf6GrTipsC+YTppJxelVJo+xeRVQ0s2PpkdDCVTsu7efyj+8r1gFiwVXsp6JZ0iQ==} - dependencies: - '@chevrotain/gast': 10.4.2 - '@chevrotain/types': 10.4.2 - lodash: 4.17.21 - dev: false - - /@chevrotain/gast@10.4.2: - resolution: {integrity: sha512-4ZAn8/mjkmYonilSJ60gGj1tAF0cVWYUMlIGA0e4ATAc3a648aCnvpBw7zlPHDQjFp50XC13iyWEgWAKiRKTOA==} - dependencies: - '@chevrotain/types': 10.4.2 - lodash: 4.17.21 - dev: false - - /@chevrotain/types@10.4.2: - resolution: {integrity: sha512-QzSCjg6G4MvIoLeIgOiMR0IgzkGEQqrNJJIr3T5ETRa7l4Av4AMIiEctV99mvDr57iXwwk0/kr3RJxiU36Nevw==} - dev: false - - /@chevrotain/utils@10.4.2: - resolution: {integrity: sha512-V34dacxWLwKcvcy32dx96ADJVdB7kOJLm7LyBkBQw5u5HC9WdEFw2G17zml+U3ivavGTrGPJHl8o9/UJm0PlUw==} - dev: false - - /@colors/colors@1.6.0: - resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} - engines: {node: '>=0.1.90'} - dev: false - - /@commitlint/cli@11.0.0: - resolution: {integrity: sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==} - engines: {node: '>=v10.22.0'} - hasBin: true - dependencies: - '@babel/runtime': 7.23.8 - '@commitlint/format': 11.0.0 - '@commitlint/lint': 11.0.0 - '@commitlint/load': 11.0.0 - '@commitlint/read': 11.0.0 - chalk: 4.1.0 - core-js: 3.38.1 - get-stdin: 8.0.0 - lodash: 4.17.21 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - yargs: 15.4.1 - dev: true + '@babel/runtime': 7.23.8 + '@commitlint/format': 11.0.0 + '@commitlint/lint': 11.0.0 + '@commitlint/load': 11.0.0 + '@commitlint/read': 11.0.0 + chalk: 4.1.0 + core-js: 3.38.1 + get-stdin: 8.0.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 15.4.1 + dev: true /@commitlint/config-conventional@11.0.0: resolution: {integrity: sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==} @@ -1748,16 +1058,6 @@ packages: conventional-changelog-conventionalcommits: 4.6.3 dev: true - /@commitlint/config-validator@19.5.0: - resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@commitlint/types': 19.5.0 - ajv: 8.17.1 - dev: true - optional: true - /@commitlint/ensure@11.0.0: resolution: {integrity: sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==} engines: {node: '>=v10.22.0'} @@ -1771,13 +1071,6 @@ packages: engines: {node: '>=v10.22.0'} dev: true - /@commitlint/execute-rule@19.5.0: - resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==} - engines: {node: '>=v18'} - requiresBuild: true - dev: true - optional: true - /@commitlint/format@11.0.0: resolution: {integrity: sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==} engines: {node: '>=v10.22.0'} @@ -1817,27 +1110,6 @@ packages: resolve-from: 5.0.0 dev: true - /@commitlint/load@19.5.0(@types/node@18.11.9)(typescript@4.9.4): - resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@commitlint/config-validator': 19.5.0 - '@commitlint/execute-rule': 19.5.0 - '@commitlint/resolve-extends': 19.5.0 - '@commitlint/types': 19.5.0 - chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@4.9.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@18.11.9)(cosmiconfig@9.0.0)(typescript@4.9.4) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - transitivePeerDependencies: - - '@types/node' - - typescript - dev: true - optional: true - /@commitlint/message@11.0.0: resolution: {integrity: sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==} engines: {node: '>=v10.22.0'} @@ -1870,20 +1142,6 @@ packages: resolve-global: 1.0.0 dev: true - /@commitlint/resolve-extends@19.5.0: - resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@commitlint/config-validator': 19.5.0 - '@commitlint/types': 19.5.0 - global-directory: 4.0.1 - import-meta-resolve: 4.1.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - dev: true - optional: true - /@commitlint/rules@11.0.0: resolution: {integrity: sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==} engines: {node: '>=v10.22.0'} @@ -1911,16 +1169,6 @@ packages: engines: {node: '>=v10.22.0'} dev: true - /@commitlint/types@19.5.0: - resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@types/conventional-commits-parser': 5.0.0 - chalk: 5.3.0 - dev: true - optional: true - /@dabh/diagnostics@2.0.3: resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} dependencies: @@ -1929,15 +1177,15 @@ packages: kuler: 2.0.0 dev: false - /@emnapi/core@1.3.0: - resolution: {integrity: sha512-9hRqVlhwqBqCoToZ3hFcNVqL+uyHV06Y47ax4UB8L6XgVRqYz7MFnfessojo6+5TK89pKwJnpophwjTMOeKI9Q==} + /@emnapi/core@1.3.1: + resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==} dependencies: '@emnapi/wasi-threads': 1.0.1 tslib: 2.7.0 dev: true - /@emnapi/runtime@1.3.0: - resolution: {integrity: sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==} + /@emnapi/runtime@1.3.1: + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} dependencies: tslib: 2.7.0 dev: true @@ -2162,18 +1410,19 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: false - /@formatjs/cli@2.15.0(ts-jest@29.0.5): + /@formatjs/cli@2.15.0: resolution: {integrity: sha512-Hv7Z3xeGcgTpn1jA1/x7tc9UYbF9Udn/77xRf7E22Vn1mGJM/DftVqnpgLeNpd0d3xSftYw+rhaShNO19BsT6A==} hasBin: true dependencies: - '@formatjs/ts-transformer': 2.13.0(ts-jest@29.0.5) + '@formatjs/ts-transformer': 2.13.0 '@types/json-stable-stringify': 1.0.36 '@types/lodash': 4.14.168 '@types/loud-rejection': 2.0.0 '@types/node': 14.18.63 - '@vue/compiler-core': 3.5.11 - '@vue/compiler-sfc': 3.5.11 + '@vue/compiler-core': 3.5.12 + '@vue/compiler-sfc': 3.5.12 chalk: 4.1.2 commander: 6.2.1 fast-glob: 3.3.2 @@ -2194,7 +1443,7 @@ packages: tslib: 2.7.0 dev: true - /@formatjs/ts-transformer@2.13.0(ts-jest@29.0.5): + /@formatjs/ts-transformer@2.13.0: resolution: {integrity: sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==} peerDependencies: ts-jest: ^26.4.0 @@ -2203,421 +1452,48 @@ packages: optional: true dependencies: intl-messageformat-parser: 6.1.2 - ts-jest: 29.0.5(@babel/core@7.25.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4) tslib: 2.7.0 typescript: 4.9.4 dev: true - /@gar/promisify@1.1.3: - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - dev: true - - /@hutson/parse-repository-url@3.0.2: - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} - dev: true - - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + /@jest/expect-utils@29.7.0: + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 + jest-get-type: 29.6.3 dev: true - /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - - /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - /@jest/console@29.7.0: - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + /@jest/schemas@29.6.3: + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - chalk: 4.1.2 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 + '@sinclair/typebox': 0.27.8 - /@jest/core@29.7.0(ts-node@8.5.2): - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + /@jest/types@29.6.3: + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} 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 dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 '@types/node': 18.11.9 - ansi-escapes: 4.3.2 + '@types/yargs': 17.0.33 chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) - 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.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - - /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - jest-mock: 29.7.0 - - /@jest/expect-utils@29.7.0: - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.6.3 - - /@jest/expect@29.7.0: - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - expect: 29.7.0 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color - - /@jest/fake-timers@29.7.0: - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.3.0 - '@types/node': 18.11.9 - jest-message-util: 29.7.0 - jest-mock: 29.7.0 - jest-util: 29.7.0 - - /@jest/globals@29.7.0: - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/types': 29.6.3 - jest-mock: 29.7.0 - transitivePeerDependencies: - - supports-color - - /@jest/reporters@29.7.0: - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - 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 - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 18.11.9 - chalk: 4.1.2 - collect-v8-coverage: 1.0.2 - exit: 0.1.2 - glob: 7.1.6 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.3 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.7 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - jest-worker: 29.7.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.3.0 - transitivePeerDependencies: - - supports-color - - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@sinclair/typebox': 0.27.8 - - /@jest/source-map@29.6.3: - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - callsites: 3.1.0 - graceful-fs: 4.2.11 - - /@jest/test-result@29.7.0: - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 - - /@jest/test-sequencer@29.7.0: - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/test-result': 29.7.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - slash: 3.0.0 - - /@jest/transform@29.7.0: - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': 7.25.7 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - - /@jest/types@25.5.0: - resolution: {integrity: sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==} - engines: {node: '>= 8.3'} - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 1.1.2 - '@types/yargs': 15.0.19 - chalk: 3.0.0 - dev: true - - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 18.11.9 - '@types/yargs': 17.0.33 - chalk: 4.1.2 - - /@jridgewell/gen-mapping@0.3.5: - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 - - /@jridgewell/resolve-uri@3.1.2: - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - - /@jridgewell/set-array@1.2.1: - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - - /@jridgewell/source-map@0.3.6: - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - dev: true + dev: true /@jridgewell/sourcemap-codec@1.5.0: resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - - /@jridgewell/trace-mapping@0.3.25: - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + dev: true /@jsdevtools/ono@7.1.3: resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} dev: true - /@kwsites/file-exists@1.1.1: - resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} - dependencies: - debug: 4.3.7 - transitivePeerDependencies: - - supports-color - dev: true - - /@kwsites/promise-deferred@1.1.1: - resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} - dev: true - - /@lerna/child-process@7.4.2: - resolution: {integrity: sha512-je+kkrfcvPcwL5Tg8JRENRqlbzjdlZXyaR88UcnCdNW0AJ1jX9IfHRys1X7AwSroU2ug8ESNC+suoBw1vX833Q==} - engines: {node: '>=16.0.0'} - dependencies: - chalk: 4.1.2 - execa: 5.0.0 - strong-log-transformer: 2.1.0 - dev: true - - /@lerna/create@7.4.2(typescript@4.9.4): - resolution: {integrity: sha512-1wplFbQ52K8E/unnqB0Tq39Z4e+NEoNrpovEnl6GpsTUrC6WDp8+w0Le2uCBV0hXyemxChduCkLz4/y1H1wTeg==} - engines: {node: '>=16.0.0'} - dependencies: - '@lerna/child-process': 7.4.2 - '@npmcli/run-script': 6.0.2 - '@nx/devkit': 16.10.0(nx@16.10.0) - '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.11 - byte-size: 8.1.1 - chalk: 4.1.0 - clone-deep: 4.0.1 - cmd-shim: 6.0.1 - columnify: 1.6.0 - conventional-changelog-core: 5.0.1 - conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@4.9.4) - dedent: 0.7.0 - execa: 5.0.0 - fs-extra: 11.2.0 - get-stream: 6.0.0 - git-url-parse: 13.1.0 - glob-parent: 5.1.2 - globby: 11.1.0 - graceful-fs: 4.2.11 - has-unicode: 2.0.1 - ini: 1.3.8 - init-package-json: 5.0.0 - inquirer: 8.2.5 - is-ci: 3.0.1 - is-stream: 2.0.0 - js-yaml: 4.1.0 - libnpmpublish: 7.3.0 - load-json-file: 6.2.0 - lodash: 4.17.21 - make-dir: 4.0.0 - minimatch: 3.0.5 - multimatch: 5.0.0 - node-fetch: 2.6.7 - npm-package-arg: 8.1.1 - npm-packlist: 5.1.1 - npm-registry-fetch: 14.0.5 - npmlog: 6.0.2 - nx: 16.10.0 - p-map: 4.0.0 - p-map-series: 2.1.0 - p-queue: 6.6.2 - p-reduce: 2.1.0 - pacote: 15.2.0 - pify: 5.0.0 - read-cmd-shim: 4.0.0 - read-package-json: 6.0.4 - resolve-from: 5.0.0 - rimraf: 4.4.1 - semver: 7.3.7 - signal-exit: 3.0.7 - slash: 3.0.0 - ssri: 9.0.1 - strong-log-transformer: 2.1.0 - tar: 6.1.11 - temp-dir: 1.0.0 - upath: 2.0.1 - uuid: 9.0.1 - validate-npm-package-license: 3.0.4 - validate-npm-package-name: 5.0.0 - write-file-atomic: 5.0.1 - write-pkg: 4.0.0 - yargs: 16.2.0 - yargs-parser: 20.2.4 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - bluebird - - debug - - encoding - - supports-color - - typescript - dev: true - - /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - dependencies: - '@babel/runtime': 7.23.8 - '@types/node': 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - dev: true - - /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - dependencies: - '@babel/runtime': 7.23.8 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - dev: true - - /@microsoft/applicationinsights-web-snippet@1.2.1: - resolution: {integrity: sha512-+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==} - dev: false - /@napi-rs/wasm-runtime@0.2.4: resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} dependencies: - '@emnapi/core': 1.3.0 - '@emnapi/runtime': 1.3.0 + '@emnapi/core': 1.3.1 + '@emnapi/runtime': 1.3.1 '@tybys/wasm-util': 0.9.0 dev: true @@ -2639,101 +1515,6 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.16.0 - /@npmcli/fs@2.1.2: - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - '@gar/promisify': 1.1.3 - semver: 7.3.7 - dev: true - - /@npmcli/fs@3.1.1: - resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - semver: 7.3.7 - dev: true - - /@npmcli/git@4.1.0: - resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@npmcli/promise-spawn': 6.0.2 - lru-cache: 7.18.3 - npm-pick-manifest: 8.0.2 - proc-log: 3.0.0 - promise-inflight: 1.0.1 - promise-retry: 2.0.1 - semver: 7.3.7 - which: 3.0.1 - transitivePeerDependencies: - - bluebird - dev: true - - /@npmcli/installed-package-contents@2.1.0: - resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - npm-bundled: 3.0.1 - npm-normalize-package-bin: 3.0.1 - dev: true - - /@npmcli/move-file@2.0.1: - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs - dependencies: - mkdirp: 1.0.4 - rimraf: 3.0.2 - dev: true - - /@npmcli/node-gyp@3.0.0: - resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /@npmcli/promise-spawn@6.0.2: - resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - which: 3.0.1 - dev: true - - /@npmcli/run-script@6.0.2: - resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@npmcli/node-gyp': 3.0.0 - '@npmcli/promise-spawn': 6.0.2 - node-gyp: 9.4.1 - read-package-json-fast: 3.0.2 - which: 3.0.1 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - - /@nrwl/devkit@16.10.0(nx@16.10.0): - resolution: {integrity: sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==} - dependencies: - '@nx/devkit': 16.10.0(nx@16.10.0) - transitivePeerDependencies: - - nx - dev: true - - /@nrwl/tao@16.10.0: - resolution: {integrity: sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==} - hasBin: true - dependencies: - nx: 16.10.0 - tslib: 2.7.0 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - debug - dev: true - /@nrwl/tao@19.8.4: resolution: {integrity: sha512-03/+QZ4/6HmKbEmvzCutLI1XIclBspNYtiVHmGPRWuwhnZViqYfnyl8J7RWVdFEoKKA5fhJqpg7e28aGuoMBvQ==} hasBin: true @@ -2746,30 +1527,6 @@ packages: - debug dev: true - /@nx/devkit@16.10.0(nx@16.10.0): - resolution: {integrity: sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==} - peerDependencies: - nx: '>= 15 <= 17' - dependencies: - '@nrwl/devkit': 16.10.0(nx@16.10.0) - ejs: 3.1.9 - enquirer: 2.3.6 - ignore: 5.3.0 - nx: 16.10.0 - semver: 7.5.3 - tmp: 0.2.1 - tslib: 2.7.0 - dev: true - - /@nx/nx-darwin-arm64@16.10.0: - resolution: {integrity: sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /@nx/nx-darwin-arm64@19.8.4: resolution: {integrity: sha512-mbSGt63hYcVCSQ54kpHl0lFqr5CsbkGJ4L3liWE30Da7vXZJwUBr9f+b9DnQ64IZzlu6vAhNcaiYQXa9lAk0yQ==} engines: {node: '>= 10'} @@ -2779,15 +1536,6 @@ packages: dev: true optional: true - /@nx/nx-darwin-x64@16.10.0: - resolution: {integrity: sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /@nx/nx-darwin-x64@19.8.4: resolution: {integrity: sha512-lTcXUCXNvqHdLmrNCOyDF+u6pDx209Ew7nSR47sQPvkycIHYi0gvgk0yndFn1Swah0lP4OxWg7rzAfmOlZd6ew==} engines: {node: '>= 10'} @@ -2797,15 +1545,6 @@ packages: dev: true optional: true - /@nx/nx-freebsd-x64@16.10.0: - resolution: {integrity: sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /@nx/nx-freebsd-x64@19.8.4: resolution: {integrity: sha512-4BUplOxPZeUwlUNfzHHMmebNVgDFW/jNX6TWRS+jINwOHnpWLkLFAXu27G80/S3OaniVCzEQklXO9b+1UsdgXw==} engines: {node: '>= 10'} @@ -2815,15 +1554,6 @@ packages: dev: true optional: true - /@nx/nx-linux-arm-gnueabihf@16.10.0: - resolution: {integrity: sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@nx/nx-linux-arm-gnueabihf@19.8.4: resolution: {integrity: sha512-Wahul8oz9huEm/Jv3wud5IGWdZxkGG4tdJm9i5TV5wxfUMAWbKU9v2nzZZins452UYESWvwvDkiuBPZqSto3qw==} engines: {node: '>= 10'} @@ -2833,8 +1563,8 @@ packages: dev: true optional: true - /@nx/nx-linux-arm64-gnu@16.10.0: - resolution: {integrity: sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==} + /@nx/nx-linux-arm64-gnu@19.8.4: + resolution: {integrity: sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2842,8 +1572,8 @@ packages: dev: true optional: true - /@nx/nx-linux-arm64-gnu@19.8.4: - resolution: {integrity: sha512-L0RVCZkNAtZDplLT7uJV7M9cXxq2Fxw+8ex3eb9XSp7eyLeFO21T0R6vTouJ42E/PEvGApCAcyGqtnyPNMZFfw==} + /@nx/nx-linux-arm64-musl@19.8.4: + resolution: {integrity: sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -2851,46 +1581,10 @@ packages: dev: true optional: true - /@nx/nx-linux-arm64-musl@16.10.0: - resolution: {integrity: sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==} + /@nx/nx-linux-x64-gnu@19.8.4: + resolution: {integrity: sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==} engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@nx/nx-linux-arm64-musl@19.8.4: - resolution: {integrity: sha512-0q8r8I8WCsY3xowDI2j109SCUSkFns/BJ40aCfRh9hhrtaIIc5qXUw2YFTjxUZNcRJXx9j9+hTe9jBkUSIGvCw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@nx/nx-linux-x64-gnu@16.10.0: - resolution: {integrity: sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@nx/nx-linux-x64-gnu@19.8.4: - resolution: {integrity: sha512-XcRBNe0ws7KB0PMcUlpQqzzjjxMP8VdqirBz7CfB2XQ8xKmP3370p0cDvqs/4oKDHK4PCkmvVFX60tzakutylA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@nx/nx-linux-x64-musl@16.10.0: - resolution: {integrity: sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==} - engines: {node: '>= 10'} - cpu: [x64] + cpu: [x64] os: [linux] requiresBuild: true dev: true @@ -2905,15 +1599,6 @@ packages: dev: true optional: true - /@nx/nx-win32-arm64-msvc@16.10.0: - resolution: {integrity: sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /@nx/nx-win32-arm64-msvc@19.8.4: resolution: {integrity: sha512-WvQag/pN9ofRWRDvOZxj3jvJoTetlvV1uyirnDrhupRgi+Fj67OlGGt2zVUHaXFGEa1MfCEG6Vhk6152m4KyaQ==} engines: {node: '>= 10'} @@ -2923,15 +1608,6 @@ packages: dev: true optional: true - /@nx/nx-win32-x64-msvc@16.10.0: - resolution: {integrity: sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /@nx/nx-win32-x64-msvc@19.8.4: resolution: {integrity: sha512-//JntLrN3L7WL/WgP3D0FE34caYTPcG/GIMBguC9w7YDyTlEikLgLbobjdCPz+2f9OWGvIZbJgGmtHNjnETM/g==} engines: {node: '>= 10'} @@ -2941,228 +1617,6 @@ packages: dev: true optional: true - /@octokit/auth-token@3.0.4: - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - dev: true - - /@octokit/core@4.2.4: - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} - engines: {node: '>= 14'} - dependencies: - '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6 - '@octokit/request': 6.2.8 - '@octokit/request-error': 3.0.3 - '@octokit/types': 9.3.2 - before-after-hook: 2.2.3 - universal-user-agent: 6.0.1 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/endpoint@7.0.6: - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} - engines: {node: '>= 14'} - dependencies: - '@octokit/types': 9.3.2 - is-plain-object: 5.0.0 - universal-user-agent: 6.0.1 - dev: true - - /@octokit/graphql@5.0.6: - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} - engines: {node: '>= 14'} - dependencies: - '@octokit/request': 6.2.8 - '@octokit/types': 9.3.2 - universal-user-agent: 6.0.1 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/openapi-types@18.1.1: - resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} - dev: true - - /@octokit/plugin-enterprise-rest@6.0.1: - resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} - dev: true - - /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' - dependencies: - '@octokit/core': 4.2.4 - '@octokit/tsconfig': 1.0.2 - '@octokit/types': 9.3.2 - dev: true - - /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' - dependencies: - '@octokit/core': 4.2.4 - dev: true - - /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' - dependencies: - '@octokit/core': 4.2.4 - '@octokit/types': 10.0.0 - dev: true - - /@octokit/request-error@3.0.3: - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} - engines: {node: '>= 14'} - dependencies: - '@octokit/types': 9.3.2 - deprecation: 2.3.1 - once: 1.4.0 - dev: true - - /@octokit/request@6.2.8: - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} - engines: {node: '>= 14'} - dependencies: - '@octokit/endpoint': 7.0.6 - '@octokit/request-error': 3.0.3 - '@octokit/types': 9.3.2 - is-plain-object: 5.0.0 - node-fetch: 2.6.9 - universal-user-agent: 6.0.1 - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/rest@19.0.11: - resolution: {integrity: sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==} - engines: {node: '>= 14'} - dependencies: - '@octokit/core': 4.2.4 - '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) - '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) - transitivePeerDependencies: - - encoding - dev: true - - /@octokit/tsconfig@1.0.2: - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - dev: true - - /@octokit/types@10.0.0: - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} - dependencies: - '@octokit/openapi-types': 18.1.1 - dev: true - - /@octokit/types@9.3.2: - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} - dependencies: - '@octokit/openapi-types': 18.1.1 - dev: true - - /@opentelemetry/api-logs@0.52.1: - resolution: {integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==} - engines: {node: '>=14'} - dependencies: - '@opentelemetry/api': 1.9.0 - dev: false - - /@opentelemetry/api@1.9.0: - resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} - engines: {node: '>=8.0.0'} - dev: false - - /@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0): - resolution: {integrity: sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/semantic-conventions': 1.27.0 - dev: false - - /@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0): - resolution: {integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/api-logs': 0.52.1 - '@types/shimmer': 1.2.0 - import-in-the-middle: 1.11.2 - require-in-the-middle: 7.4.0 - semver: 7.5.4 - shimmer: 1.2.1 - transitivePeerDependencies: - - supports-color - dev: false - - /@opentelemetry/resources@1.26.0(@opentelemetry/api@1.9.0): - resolution: {integrity: sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.27.0 - dev: false - - /@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0): - resolution: {integrity: sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) - '@opentelemetry/resources': 1.26.0(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.27.0 - dev: false - - /@opentelemetry/semantic-conventions@1.27.0: - resolution: {integrity: sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==} - engines: {node: '>=14'} - dev: false - - /@parcel/watcher@2.0.4: - resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} - engines: {node: '>= 10.0.0'} - requiresBuild: true - dependencies: - node-addon-api: 3.2.1 - node-gyp-build: 4.8.2 - dev: true - - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - dev: true - optional: true - - /@prettier/plugin-xml@2.2.0: - resolution: {integrity: sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==} - dependencies: - '@xml-tools/parser': 1.0.11 - prettier: 2.8.7 - dev: false - - /@rtsao/scc@1.1.0: - resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - dev: true - /@sap-ux/annotation-converter@0.5.20: resolution: {integrity: sha512-p9fIn26LErYXgzSCnpv2Pt9isUZh6Ke1vlU/rqMhtmJ8yl038utmAtKoQ9z3dB/C0qjb329P6UKqCR6GoCBJuw==} dev: false @@ -3218,21 +1672,6 @@ packages: yaml: 2.2.2 dev: false - /@sap/bas-sdk@3.8.9: - resolution: {integrity: sha512-ycYttnSTlEPjDrb0svSv0jBgqEvoekD4bNB4IxuKCu5OKk5FycwsOTgufU8CXYf1ag23wTlurN+N7c4Po6PcJQ==} - dependencies: - axios: 1.7.4 - cross-spawn: 7.0.3 - fs-extra: 11.2.0 - lodash: 4.17.21 - url-join: 4.0.1 - ws: 8.17.1 - transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - dev: false - /@sap/swa-for-sapbas-vsx@1.1.9: resolution: {integrity: sha512-+GYqIkxeGBFnNdHvlD9Ew9l/YOpuI8PmEgRjbfJ8IUYsEBMLJdIeppZYFqEOoV7CRGue+dKKK2UxKuF2OJCiPw==} deprecated: This version is obsolete. Please upgrade to version 1.1.13 or above. @@ -3242,139 +1681,19 @@ packages: matomo-tracker: 2.2.2 dev: false - /@sap/swa-for-sapbas-vsx@2.0.7: - resolution: {integrity: sha512-EPV6cj5AdCSUp9FLHqKw+nochB5tOjzV840+0pQ1ebEPdzqaQ+e3RjFjqfIrBEZn5yD3EiLPR/3qYTDBh1MarQ==} - dependencies: - '@sap/bas-sdk': 3.8.9 - applicationinsights: 2.9.2 - lodash: 4.17.21 - transitivePeerDependencies: - - applicationinsights-native-metrics - - bufferutil - - debug - - supports-color - - utf-8-validate - dev: false - - /@sigstore/bundle@1.1.0: - resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@sigstore/protobuf-specs': 0.2.1 - dev: true - - /@sigstore/protobuf-specs@0.2.1: - resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /@sigstore/sign@1.0.0: - resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@sigstore/bundle': 1.1.0 - '@sigstore/protobuf-specs': 0.2.1 - make-fetch-happen: 11.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@sigstore/tuf@1.0.3: - resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@sigstore/protobuf-specs': 0.2.1 - tuf-js: 1.1.7 - transitivePeerDependencies: - - supports-color - dev: true - /@sinclair/typebox@0.27.8: resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - /@sinonjs/commons@3.0.1: - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} - dependencies: - type-detect: 4.0.8 - - /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - dependencies: - '@sinonjs/commons': 3.0.1 - - /@tootallnate/once@1.1.2: - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - dev: true - - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - - /@tufjs/canonical-json@1.0.0: - resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /@tufjs/models@1.0.4: - resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@tufjs/canonical-json': 1.0.0 - minimatch: 9.0.3 - dev: true - /@tybys/wasm-util@0.9.0: resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} dependencies: tslib: 2.7.0 dev: true - /@types/babel__core@7.20.5: - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - dependencies: - '@babel/parser': 7.25.7 - '@babel/types': 7.25.7 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.6 - - /@types/babel__generator@7.6.8: - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} - dependencies: - '@babel/types': 7.25.7 - - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - dependencies: - '@babel/parser': 7.25.7 - '@babel/types': 7.25.7 - - /@types/babel__traverse@7.20.6: - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - dependencies: - '@babel/types': 7.25.7 - - /@types/chai@5.0.0: - resolution: {integrity: sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==} - dev: true - - /@types/conventional-commits-parser@5.0.0: - resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} - requiresBuild: true - dependencies: - '@types/node': 18.11.9 - dev: true - optional: true - /@types/deep-freeze-strict@1.1.0: resolution: {integrity: sha512-fILflsS66kGQ4iIBzYoxuQCWK1wQdy/ooguTofUk0KSxA+G5ZzH8WdU8mf6IU+5cMBW+j9u+eh+7kv63R3O9Tw==} dev: true - /@types/estree@1.0.6: - resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} - dev: true - /@types/fs-extra@9.0.11: resolution: {integrity: sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA==} dependencies: @@ -3388,36 +1707,21 @@ packages: '@types/node': 18.11.9 dev: true - /@types/graceful-fs@4.1.9: - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - dependencies: - '@types/node': 18.11.9 - - /@types/is-ci@3.0.4: - resolution: {integrity: sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==} - dependencies: - ci-info: 3.9.0 - dev: true - /@types/istanbul-lib-coverage@2.0.6: resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + dev: true /@types/istanbul-lib-report@3.0.3: resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} dependencies: '@types/istanbul-lib-coverage': 2.0.6 - - /@types/istanbul-reports@1.1.2: - resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-lib-report': 3.0.3 dev: true /@types/istanbul-reports@3.0.4: resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} dependencies: '@types/istanbul-lib-report': 3.0.3 + dev: true /@types/jest-specific-snapshot@0.5.5: resolution: {integrity: sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A==} @@ -3436,14 +1740,6 @@ packages: resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} dev: true - /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - dependencies: - '@types/node': 18.11.9 - '@types/tough-cookie': 4.0.5 - parse5: 7.1.2 - dev: true - /@types/json-schema@7.0.15: resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -3451,16 +1747,6 @@ packages: resolution: {integrity: sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==} dev: true - /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - dev: true - - /@types/klaw-sync@6.0.0: - resolution: {integrity: sha512-Ibfb2jgpjYUxnl7RSVvUzOrv/vhkTVKEfPwQf9ZlDDsSyWVDp/2JtTBxO4eRrKBYtxc3cZQabdR38i8R0o1uww==} - dependencies: - '@types/node': 18.11.9 - dev: true - /@types/lodash@4.14.168: resolution: {integrity: sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==} dev: true @@ -3474,6 +1760,7 @@ packages: /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: false /@types/minimatch@5.1.2: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} @@ -3490,16 +1777,13 @@ packages: form-data: 3.0.1 dev: true - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: true - /@types/node@14.18.63: resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} dev: true /@types/node@18.11.9: resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} + dev: true /@types/normalize-package-data@2.4.4: resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -3509,63 +1793,16 @@ packages: resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} dev: true - /@types/prettier@1.19.1: - resolution: {integrity: sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==} - dev: true - /@types/prettier@2.7.3: resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} dev: true - /@types/rimraf@3.0.0: - resolution: {integrity: sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==} - dependencies: - '@types/glob': 8.1.0 - '@types/node': 18.11.9 - dev: true - - /@types/semver@6.2.7: - resolution: {integrity: sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==} - dev: true - /@types/semver@7.3.12: resolution: {integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==} dev: true - /@types/shimmer@1.2.0: - resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} - dev: false - - /@types/sinon-chai@3.2.5: - resolution: {integrity: sha512-bKQqIpew7mmIGNRlxW6Zli/QVyc3zikpGzCa797B/tRnD9OtHvZ/ts8sYXV+Ilj9u3QRaUEM8xrjgd1gwm1BpQ==} - dependencies: - '@types/chai': 5.0.0 - '@types/sinon': 9.0.10 - dev: true - - /@types/sinon@9.0.10: - resolution: {integrity: sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==} - dependencies: - '@types/sinonjs__fake-timers': 8.1.5 - dev: true - - /@types/sinonjs__fake-timers@8.1.5: - resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==} - dev: true - - /@types/stack-utils@1.0.1: - resolution: {integrity: sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==} - dev: true - - /@types/stack-utils@2.0.3: - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - - /@types/tmp@0.2.0: - resolution: {integrity: sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==} - dev: true - - /@types/tough-cookie@4.0.5: - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + /@types/stack-utils@2.0.3: + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} dev: true /@types/triple-beam@1.3.5: @@ -3578,17 +1815,13 @@ packages: /@types/yargs-parser@21.0.3: resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - - /@types/yargs@15.0.19: - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} - dependencies: - '@types/yargs-parser': 21.0.3 dev: true /@types/yargs@17.0.33: resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} dependencies: '@types/yargs-parser': 21.0.3 + dev: true /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.14.0)(eslint@7.18.0)(typescript@4.9.4): resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} @@ -3758,152 +1991,46 @@ packages: /@vscode-logging/types@0.1.4: resolution: {integrity: sha512-uxuHQfpX9RbkgSj5unJFmciXRczyFSaAI2aA829MYYkE8jxlhZLRLoiJLymTNiojNVdV7fFE3CILF5Q6M+EBsA==} - /@vue/compiler-core@3.5.11: - resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==} + /@vue/compiler-core@3.5.12: + resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} dependencies: - '@babel/parser': 7.25.7 - '@vue/shared': 3.5.11 + '@babel/parser': 7.25.8 + '@vue/shared': 3.5.12 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 dev: true - /@vue/compiler-dom@3.5.11: - resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==} + /@vue/compiler-dom@3.5.12: + resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==} dependencies: - '@vue/compiler-core': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/compiler-core': 3.5.12 + '@vue/shared': 3.5.12 dev: true - /@vue/compiler-sfc@3.5.11: - resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==} + /@vue/compiler-sfc@3.5.12: + resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==} dependencies: - '@babel/parser': 7.25.7 - '@vue/compiler-core': 3.5.11 - '@vue/compiler-dom': 3.5.11 - '@vue/compiler-ssr': 3.5.11 - '@vue/shared': 3.5.11 + '@babel/parser': 7.25.8 + '@vue/compiler-core': 3.5.12 + '@vue/compiler-dom': 3.5.12 + '@vue/compiler-ssr': 3.5.12 + '@vue/shared': 3.5.12 estree-walker: 2.0.2 - magic-string: 0.30.11 + magic-string: 0.30.12 postcss: 8.4.47 source-map-js: 1.2.1 dev: true - /@vue/compiler-ssr@3.5.11: - resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==} - dependencies: - '@vue/compiler-dom': 3.5.11 - '@vue/shared': 3.5.11 - dev: true - - /@vue/shared@3.5.11: - resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==} - dev: true - - /@webassemblyjs/ast@1.12.1: - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} - dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - dev: true - - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - dev: true - - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - dev: true - - /@webassemblyjs/helper-buffer@1.12.1: - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} - dev: true - - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} - dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 - dev: true - - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - dev: true - - /@webassemblyjs/helper-wasm-section@1.12.1: - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} - dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.12.1 - dev: true - - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} - dependencies: - '@xtuc/ieee754': 1.2.0 - dev: true - - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} - dependencies: - '@xtuc/long': 4.2.2 - dev: true - - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - dev: true - - /@webassemblyjs/wasm-edit@1.12.1: - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} - dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.12.1 - '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/wasm-opt': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wast-printer': 1.12.1 - dev: true - - /@webassemblyjs/wasm-gen@1.12.1: - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} - dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - dev: true - - /@webassemblyjs/wasm-opt@1.12.1: - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + /@vue/compiler-ssr@3.5.12: + resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==} dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + '@vue/compiler-dom': 3.5.12 + '@vue/shared': 3.5.12 dev: true - /@webassemblyjs/wasm-parser@1.12.1: - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} - dependencies: - '@webassemblyjs/ast': 1.12.1 - '@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 - dev: true - - /@webassemblyjs/wast-printer@1.12.1: - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} - dependencies: - '@webassemblyjs/ast': 1.12.1 - '@xtuc/long': 4.2.2 + /@vue/shared@3.5.12: + resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} dev: true /@xml-tools/ast-position@2.0.2: @@ -3932,25 +2059,11 @@ packages: lodash: 4.17.15 dev: false - /@xml-tools/parser@1.0.11: - resolution: {integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==} - dependencies: - chevrotain: 7.1.1 - dev: false - /@xml-tools/parser@1.0.7: resolution: {integrity: sha512-mdjG4dWj4zaubxWAgr0YMNkZr182aHek5xrpDqgITNnGf+E8FhvAmCU95QiL9+pGjqK8Qfd+qnuer9f8KELRyQ==} dependencies: chevrotain: 7.0.1 - /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - dev: true - - /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - dev: true - /@yarnpkg/lockfile@1.1.0: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} dev: true @@ -3963,13 +2076,6 @@ packages: tslib: 2.7.0 dev: true - /@zkochan/js-yaml@0.0.6: - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} - hasBin: true - dependencies: - argparse: 2.0.1 - dev: true - /@zkochan/js-yaml@0.0.7: resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} hasBin: true @@ -3985,56 +2091,19 @@ packages: through: 2.3.8 dev: true - /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - dev: true - - /abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - dev: true - - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - dependencies: - acorn: 8.12.1 - acorn-walk: 8.3.4 - dev: true - - /acorn-import-attributes@1.9.5(acorn@8.12.1): - resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} - peerDependencies: - acorn: ^8 - dependencies: - acorn: 8.12.1 - /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 7.4.1 - - /acorn-walk@8.3.4: - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} - engines: {node: '>=0.4.0'} - dependencies: - acorn: 8.12.1 - dev: true + dev: false /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true - - /acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} - engines: {node: '>=0.4.0'} - hasBin: true - - /add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - dev: true + dev: false /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} @@ -4043,13 +2112,7 @@ packages: debug: 4.3.7 transitivePeerDependencies: - supports-color - - /agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} - dependencies: - humanize-ms: 1.2.1 - dev: true + dev: false /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} @@ -4059,14 +2122,6 @@ packages: indent-string: 4.0.0 dev: true - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 - dependencies: - ajv: 6.12.6 - dev: true - /ajv@6.12.3: resolution: {integrity: sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==} dependencies: @@ -4074,6 +2129,7 @@ packages: fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 + dev: false /ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} @@ -4082,6 +2138,7 @@ packages: fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 + dev: false /ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} @@ -4091,6 +2148,7 @@ packages: fast-uri: 3.0.1 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 + dev: false /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} @@ -4101,16 +2159,12 @@ packages: engines: {node: '>=8'} dependencies: type-fest: 0.21.3 + dev: true /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - /ansi-regex@6.1.0: - resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} - engines: {node: '>=12'} - dev: true - /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -4127,74 +2181,13 @@ packages: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - dev: true - /any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} dev: true - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - - /append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} - dependencies: - default-require-extensions: 3.0.1 - dev: true - - /applicationinsights@2.9.2: - resolution: {integrity: sha512-wlDiD7v0BQNM8oNzsf9C836R5ze25u+CuCEZsbA5xMIXYYBxkqkWE/mo9GFJM7rsKaiGqpxEwWmePHKD2Lwy2w==} - engines: {node: '>=8.0.0'} - peerDependencies: - applicationinsights-native-metrics: '*' - peerDependenciesMeta: - applicationinsights-native-metrics: - optional: true - dependencies: - '@azure/core-auth': 1.8.0 - '@azure/core-rest-pipeline': 1.10.1 - '@azure/core-util': 1.2.0 - '@azure/opentelemetry-instrumentation-azure-sdk': 1.0.0-beta.6 - '@microsoft/applicationinsights-web-snippet': 1.2.1 - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0) - '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.27.0 - cls-hooked: 4.2.2 - continuation-local-storage: 3.2.1 - diagnostic-channel: 1.1.1 - diagnostic-channel-publishers: 1.0.8(diagnostic-channel@1.1.1) - transitivePeerDependencies: - - supports-color - dev: false - - /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - dev: true - - /archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - dev: true - - /are-we-there-yet@3.0.1: - resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - dependencies: - delegates: 1.0.0 - readable-stream: 3.6.2 - dev: true - /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + dev: true /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} @@ -4204,17 +2197,10 @@ packages: /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - /array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - is-array-buffer: 3.0.4 - dev: true - /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} + dev: false /array-find-index@1.0.2: resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} @@ -4225,18 +2211,6 @@ packages: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - get-intrinsic: 1.2.4 - is-string: 1.0.7 - dev: true - /array-timsort@1.0.3: resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} dev: true @@ -4244,52 +2218,7 @@ packages: /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - - /array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-shim-unscopables: 1.0.2 - dev: true - - /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-shim-unscopables: 1.0.2 - dev: true - - /array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-shim-unscopables: 1.0.2 - dev: true - - /arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} - dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 - dev: true + dev: false /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} @@ -4299,21 +2228,11 @@ packages: /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} - - /asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - dependencies: - safer-buffer: 2.1.2 - dev: true + dev: false /assert-never@1.2.1: resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} - /assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - dev: true - /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} @@ -4321,47 +2240,19 @@ packages: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} - /async-hook-jl@1.7.6: - resolution: {integrity: sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==} - engines: {node: ^4.7 || >=6.9 || >=7.3} - dependencies: - stack-chain: 1.3.7 - dev: false - - /async-listener@0.6.10: - resolution: {integrity: sha512-gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==} - engines: {node: <=0.11.8 || >0.11.10} - dependencies: - semver: 5.7.2 - shimmer: 1.2.1 - dev: false - /async@3.2.5: resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + dev: false /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true /at-least-node@1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} dev: true - /available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} - dependencies: - possible-typed-array-names: 1.0.0 - dev: true - - /aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - dev: true - - /aws4@1.13.2: - resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} - dev: true - /axios@1.6.1: resolution: {integrity: sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==} dependencies: @@ -4372,16 +2263,6 @@ packages: - debug dev: true - /axios@1.7.4: - resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==} - dependencies: - follow-redirects: 1.15.9 - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - dev: false - /axios@1.7.7: resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} dependencies: @@ -4392,76 +2273,6 @@ packages: - debug dev: true - /babel-jest@29.7.0(@babel/core@7.25.7): - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': 7.25.7 - '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.25.7) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} - dependencies: - '@babel/helper-plugin-utils': 7.25.7 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.1 - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color - - /babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/template': 7.25.7 - '@babel/types': 7.25.7 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.6 - - /babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.7): - resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.25.7 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) - '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7) - - /babel-preset-jest@29.6.3(@babel/core@7.25.7): - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.25.7 - babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.7) - /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -4469,39 +2280,6 @@ packages: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} dev: true - /bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - dependencies: - tweetnacl: 0.14.5 - dev: true - - /before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - dev: true - - /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} - dependencies: - is-windows: 1.0.2 - dev: true - - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - dev: true - - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - dev: true - - /binary@0.3.0: - resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==} - dependencies: - buffers: 0.1.1 - chainsaw: 0.1.0 - dev: true - /binaryextensions@4.19.0: resolution: {integrity: sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==} engines: {node: '>=0.8'} @@ -4515,10 +2293,6 @@ packages: readable-stream: 3.6.2 dev: true - /bluebird@3.4.7: - resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==} - dev: true - /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: @@ -4536,137 +2310,20 @@ packages: dependencies: fill-range: 7.0.1 - /breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} - dependencies: - wcwidth: 1.0.1 + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} dev: true - /browser-resolve@1.11.3: - resolution: {integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==} + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} dependencies: - resolve: 1.1.7 + base64-js: 1.5.1 + ieee754: 1.2.1 dev: true - /browserslist@4.24.0: - resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001667 - electron-to-chromium: 1.5.33 - node-releases: 2.0.18 - update-browserslist-db: 1.1.1(browserslist@4.24.0) - - /bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} - dependencies: - fast-json-stable-stringify: 2.1.0 - dev: true - - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - dependencies: - node-int64: 0.4.0 - - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - - /buffer-indexof-polyfill@1.0.2: - resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==} - engines: {node: '>=0.10'} - dev: true - - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - dev: true - - /buffers@0.1.1: - resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==} - engines: {node: '>=0.2.0'} - dev: true - - /builtins@1.0.3: - resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} - dev: true - - /builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} - dependencies: - semver: 7.3.7 - dev: true - - /byte-size@8.1.1: - resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==} - engines: {node: '>=12.17'} - dev: true - - /cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - '@npmcli/fs': 2.1.2 - '@npmcli/move-file': 2.0.1 - chownr: 2.0.0 - fs-minipass: 2.1.0 - glob: 8.1.0 - infer-owner: 1.0.4 - lru-cache: 7.18.3 - minipass: 3.3.6 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - mkdirp: 1.0.4 - p-map: 4.0.0 - promise-inflight: 1.0.1 - rimraf: 3.0.2 - ssri: 9.0.1 - tar: 6.1.11 - unique-filename: 2.0.1 - transitivePeerDependencies: - - bluebird - dev: true - - /cacache@17.1.4: - resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@npmcli/fs': 3.1.1 - fs-minipass: 3.0.3 - glob: 10.4.5 - lru-cache: 7.18.3 - minipass: 7.1.2 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - p-map: 4.0.0 - ssri: 10.0.6 - tar: 6.1.11 - unique-filename: 3.0.0 - dev: true - - /cachedir@2.3.0: - resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} - engines: {node: '>=6'} - dev: true - - /caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} - dependencies: - hasha: 5.2.2 - make-dir: 3.1.0 - package-hash: 4.0.0 - write-file-atomic: 3.0.3 - dev: true - - /call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + /call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -4696,16 +2353,6 @@ packages: /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} - - /caniuse-lite@1.0.30001667: - resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==} - - /caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} dev: true /chai@4.2.0: @@ -4719,12 +2366,6 @@ packages: pathval: 1.1.1 type-detect: 4.0.8 - /chainsaw@0.1.0: - resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==} - dependencies: - traverse: 0.3.9 - dev: true - /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -4733,14 +2374,6 @@ packages: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - dev: true - /chalk@4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} @@ -4756,21 +2389,6 @@ packages: ansi-styles: 4.3.0 supports-color: 7.2.0 - /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - requiresBuild: true - dev: true - optional: true - - /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} - - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true - /check-error@1.0.3: resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} dependencies: @@ -4792,28 +2410,10 @@ packages: dependencies: regexp-to-ast: 0.5.0 - /chevrotain@7.1.1: - resolution: {integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==} - dependencies: - regexp-to-ast: 0.5.0 - dev: false - - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - dev: true - - /chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} - engines: {node: '>=6.0'} - dev: true - /ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} - - /cjs-module-lexer@1.4.1: - resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==} + dev: true /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} @@ -4843,11 +2443,6 @@ packages: engines: {node: '>=6'} dev: true - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: true - /cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} @@ -4856,11 +2451,6 @@ packages: string-width: 4.2.3 dev: true - /cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - dev: true - /cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: @@ -4869,14 +2459,6 @@ packages: wrap-ansi: 6.2.0 dev: true - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - /cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} @@ -4884,21 +2466,13 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + dev: true /clone-buffer@1.0.0: resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} engines: {node: '>= 0.10'} dev: false - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} - dependencies: - is-plain-object: 2.0.4 - kind-of: 6.0.3 - shallow-clone: 3.0.1 - dev: true - /clone-stats@1.0.0: resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} dev: false @@ -4921,27 +2495,6 @@ packages: readable-stream: 2.3.8 dev: false - /cls-hooked@4.2.2: - resolution: {integrity: sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==} - engines: {node: ^4.7 || >=6.9 || >=7.3 || >=8.2.1} - dependencies: - async-hook-jl: 1.7.6 - emitter-listener: 1.1.2 - semver: 5.7.2 - dev: false - - /cmd-shim@6.0.1: - resolution: {integrity: sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - - /collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -4966,11 +2519,6 @@ packages: simple-swizzle: 0.2.2 dev: false - /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - dev: true - /color@3.2.1: resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} dependencies: @@ -4989,22 +2537,11 @@ packages: text-hex: 1.0.0 dev: false - /columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} - dependencies: - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - dev: true - /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 - - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: true /commander@6.2.1: @@ -5023,32 +2560,9 @@ packages: repeat-string: 1.6.1 dev: true - /commitizen@4.3.1(@types/node@18.11.9)(typescript@4.9.4): - resolution: {integrity: sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==} - engines: {node: '>= 12'} - hasBin: true - dependencies: - cachedir: 2.3.0 - cz-conventional-changelog: 3.3.0(@types/node@18.11.9)(typescript@4.9.4) - dedent: 0.7.0 - detect-indent: 6.1.0 - find-node-modules: 2.1.3 - find-root: 1.1.0 - fs-extra: 9.1.0 - glob: 7.2.3 - inquirer: 8.2.5 - is-utf8: 0.2.1 - lodash: 4.17.21 - minimist: 1.2.7 - strip-bom: 4.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - '@types/node' - - typescript - dev: true - /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + dev: false /compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} @@ -5060,27 +2574,6 @@ packages: /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - /concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} - dependencies: - buffer-from: 1.1.2 - inherits: 2.0.4 - readable-stream: 3.6.2 - typedarray: 0.0.6 - dev: true - - /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - dev: true - - /continuation-local-storage@3.2.1: - resolution: {integrity: sha512-jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==} - dependencies: - async-listener: 0.6.10 - emitter-listener: 1.1.2 - dev: false - /conventional-changelog-angular@5.0.13: resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} engines: {node: '>=10'} @@ -5089,39 +2582,6 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-angular@7.0.0: - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} - engines: {node: '>=16'} - dependencies: - compare-func: 2.0.0 - dev: true - - /conventional-changelog-atom@2.0.8: - resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==} - engines: {node: '>=10'} - dependencies: - q: 1.5.1 - dev: true - - /conventional-changelog-cli@2.1.1: - resolution: {integrity: sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==} - engines: {node: '>=10'} - hasBin: true - dependencies: - add-stream: 1.0.0 - conventional-changelog: 3.1.25 - lodash: 4.17.21 - meow: 8.1.2 - tempfile: 3.0.0 - dev: true - - /conventional-changelog-codemirror@2.0.8: - resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==} - engines: {node: '>=10'} - dependencies: - q: 1.5.1 - dev: true - /conventional-changelog-conventionalcommits@4.6.3: resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} engines: {node: '>=10'} @@ -5131,486 +2591,90 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-core@4.2.4: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} engines: {node: '>=10'} + hasBin: true dependencies: - add-stream: 1.0.0 - conventional-changelog-writer: 5.0.1 - conventional-commits-parser: 3.2.4 - dateformat: 3.0.3 - get-pkg-repo: 4.2.1 - git-raw-commits: 2.0.11 - git-remote-origin-url: 2.0.0 - git-semver-tags: 4.1.1 + JSONStream: 1.3.5 + is-text-path: 1.0.1 lodash: 4.17.21 - normalize-package-data: 3.0.3 - q: 1.5.1 - read-pkg: 3.0.0 - read-pkg-up: 3.0.0 + meow: 8.1.2 + split2: 3.2.2 through2: 4.0.2 dev: true - /conventional-changelog-core@5.0.1: - resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==} - engines: {node: '>=14'} - dependencies: - add-stream: 1.0.0 - conventional-changelog-writer: 6.0.1 - conventional-commits-parser: 4.0.0 - dateformat: 3.0.3 - get-pkg-repo: 4.2.1 - git-raw-commits: 3.0.0 - git-remote-origin-url: 2.0.0 - git-semver-tags: 5.0.1 - normalize-package-data: 3.0.3 - read-pkg: 3.0.0 - read-pkg-up: 3.0.0 + /core-js@3.38.1: + resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==} + requiresBuild: true dev: true - /conventional-changelog-ember@2.0.9: - resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==} + /core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: - q: 1.5.1 + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 dev: true - /conventional-changelog-eslint@3.0.9: - resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==} - engines: {node: '>=10'} + /cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true dependencies: - q: 1.5.1 + cross-spawn: 7.0.3 dev: true - /conventional-changelog-express@2.0.6: - resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==} - engines: {node: '>=10'} + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: - q: 1.5.1 - dev: true + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 - /conventional-changelog-jquery@3.0.11: - resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==} - engines: {node: '>=10'} + /currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} dependencies: - q: 1.5.1 + array-find-index: 1.0.2 dev: true - /conventional-changelog-jshint@2.0.9: - resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==} - engines: {node: '>=10'} + /d@1.0.1: + resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} dependencies: - compare-func: 2.0.0 - q: 1.5.1 + es5-ext: 0.10.62 + type: 1.2.0 dev: true - /conventional-changelog-preset-loader@2.3.4: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: '>=10'} + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} dev: true - /conventional-changelog-preset-loader@3.0.0: - resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} - engines: {node: '>=14'} - dev: true + /date-format@2.1.0: + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} + deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. + dev: false - /conventional-changelog-writer@5.0.1: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: '>=10'} - hasBin: true + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: - conventional-commits-filter: 2.0.7 - dateformat: 3.0.3 - handlebars: 4.7.8 - json-stringify-safe: 5.0.1 - lodash: 4.17.21 - meow: 8.1.2 - semver: 6.3.1 - split: 1.0.1 - through2: 4.0.2 - dev: true - - /conventional-changelog-writer@6.0.1: - resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} - engines: {node: '>=14'} - hasBin: true - dependencies: - conventional-commits-filter: 3.0.0 - dateformat: 3.0.3 - handlebars: 4.7.8 - json-stringify-safe: 5.0.1 - meow: 8.1.2 - semver: 7.3.7 - split: 1.0.1 - dev: true - - /conventional-changelog@3.1.25: - resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} - engines: {node: '>=10'} - dependencies: - conventional-changelog-angular: 5.0.13 - conventional-changelog-atom: 2.0.8 - conventional-changelog-codemirror: 2.0.8 - conventional-changelog-conventionalcommits: 4.6.3 - conventional-changelog-core: 4.2.4 - conventional-changelog-ember: 2.0.9 - conventional-changelog-eslint: 3.0.9 - conventional-changelog-express: 2.0.6 - conventional-changelog-jquery: 3.0.11 - conventional-changelog-jshint: 2.0.9 - conventional-changelog-preset-loader: 2.3.4 - dev: true - - /conventional-commit-types@3.0.0: - resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==} - dev: true - - /conventional-commits-filter@2.0.7: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: '>=10'} - dependencies: - lodash.ismatch: 4.4.0 - modify-values: 1.0.1 - dev: true - - /conventional-commits-filter@3.0.0: - resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} - engines: {node: '>=14'} - dependencies: - lodash.ismatch: 4.4.0 - modify-values: 1.0.1 - dev: true - - /conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} - hasBin: true - dependencies: - JSONStream: 1.3.5 - is-text-path: 1.0.1 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 - dev: true - - /conventional-commits-parser@4.0.0: - resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} - engines: {node: '>=14'} - hasBin: true - dependencies: - JSONStream: 1.3.5 - is-text-path: 1.0.1 - meow: 8.1.2 - split2: 3.2.2 - dev: true - - /conventional-recommended-bump@7.0.1: - resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} - engines: {node: '>=14'} - hasBin: true - dependencies: - concat-stream: 2.0.0 - conventional-changelog-preset-loader: 3.0.0 - conventional-commits-filter: 3.0.0 - conventional-commits-parser: 4.0.0 - git-raw-commits: 3.0.0 - git-semver-tags: 5.0.1 - meow: 8.1.2 - dev: true - - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - dev: true - - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - /core-js@3.38.1: - resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==} - requiresBuild: true - dev: true - - /core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - dev: true - - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - - /cosmiconfig-typescript-loader@5.0.0(@types/node@18.11.9)(cosmiconfig@9.0.0)(typescript@4.9.4): - resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} - engines: {node: '>=v16'} - requiresBuild: true - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=8.2' - typescript: '>=4' - dependencies: - '@types/node': 18.11.9 - cosmiconfig: 9.0.0(typescript@4.9.4) - jiti: 1.21.6 - typescript: 4.9.4 - dev: true - optional: true - - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} - dependencies: - '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - dev: true - - /cosmiconfig@8.3.6(typescript@4.9.4): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - typescript: 4.9.4 - dev: true - - /cosmiconfig@9.0.0(typescript@4.9.4): - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} - engines: {node: '>=14'} - requiresBuild: true - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - env-paths: 2.2.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - typescript: 4.9.4 - dev: true - optional: true - - /coveralls@3.1.0: - resolution: {integrity: sha512-sHxOu2ELzW8/NC1UP5XVLbZDzO4S3VxfFye3XYCznopHy02YjNkHcj5bKaVw2O7hVaBdBjEdQGpie4II1mWhuQ==} - engines: {node: '>=6'} - hasBin: true - dependencies: - js-yaml: 3.14.1 - lcov-parse: 1.0.0 - log-driver: 1.2.7 - minimist: 1.2.8 - request: 2.88.2 - dev: true - - /create-jest@29.7.0(@types/node@18.11.9)(ts-node@8.5.2): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - /cross-env@7.0.3: - resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} - engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} - hasBin: true - dependencies: - cross-spawn: 7.0.3 - dev: true - - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - dev: true - - /cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} - dependencies: - nice-try: 1.0.5 - path-key: 2.0.1 - semver: 5.7.2 - shebang-command: 1.2.0 - which: 1.3.1 - dev: true - - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - - /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - dev: true - - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - dev: true - - /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} - dependencies: - cssom: 0.3.8 - dev: true - - /csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - dev: true - - /csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - dev: true - - /csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - dev: true - - /csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - dev: true - - /currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} - dependencies: - array-find-index: 1.0.2 - dev: true - - /cz-conventional-changelog@3.3.0(@types/node@18.11.9)(typescript@4.9.4): - resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==} - engines: {node: '>= 10'} - dependencies: - chalk: 2.4.2 - commitizen: 4.3.1(@types/node@18.11.9)(typescript@4.9.4) - conventional-commit-types: 3.0.0 - lodash.map: 4.6.0 - longest: 2.0.1 - word-wrap: 1.2.5 - optionalDependencies: - '@commitlint/load': 19.5.0(@types/node@18.11.9)(typescript@4.9.4) - transitivePeerDependencies: - - '@types/node' - - typescript - dev: true - - /d@1.0.1: - resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} - dependencies: - es5-ext: 0.10.62 - type: 1.2.0 - dev: true - - /dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - dev: true - - /dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} - dependencies: - assert-plus: 1.0.0 - dev: true - - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} - dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - dev: true - - /data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - dev: true - - /data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - dev: true - - /data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - dev: true - - /date-format@2.1.0: - resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} - engines: {node: '>=4.0'} - deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. - dev: false - - /dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - dev: true - - /debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.3 - dev: true - - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 + ms: 2.1.2 + dev: false /debug@4.3.7: resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} @@ -5636,22 +2700,10 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - dev: true - /dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true - /dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - /deep-eql@3.0.1: resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} engines: {node: '>=0.12'} @@ -5663,6 +2715,7 @@ packages: dependencies: lodash.mapvalues: 4.6.0 sort-any: 1.2.9 + dev: false /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} @@ -5675,17 +2728,7 @@ packages: /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - - /default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} - dependencies: - strip-bom: 4.0.0 - dev: true + dev: false /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} @@ -5707,63 +2750,9 @@ packages: engines: {node: '>=8'} dev: true - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - dependencies: - define-data-property: 1.1.4 - has-property-descriptors: 1.0.2 - object-keys: 1.1.1 - dev: true - /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - - /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - dev: true - - /deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - dev: true - - /detect-file@1.0.0: - resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} - engines: {node: '>=0.10.0'} - dev: true - - /detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - dev: true - - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true - - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} - - /diagnostic-channel-publishers@1.0.8(diagnostic-channel@1.1.1): - resolution: {integrity: sha512-HmSm9hXxSPxA9BaLGY98QU1zsdjeCk113KjAYGPCen1ZP6mhVaTPzHd6UYv5r21DnWANi+f+NyPOHruGT9jpqQ==} - peerDependencies: - diagnostic-channel: '*' - dependencies: - diagnostic-channel: 1.1.1 - dev: false - - /diagnostic-channel@1.1.1: - resolution: {integrity: sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==} - dependencies: - semver: 7.5.4 - dev: false - - /diff-sequences@25.2.6: - resolution: {integrity: sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==} - engines: {node: '>= 8.3'} dev: true /diff-sequences@29.6.3: @@ -5773,33 +2762,21 @@ packages: /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} + dev: true /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} dependencies: path-type: 4.0.0 - - /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} - dependencies: - esutils: 2.0.3 - dev: true + dev: false /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 - - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead - dependencies: - webidl-conversions: 7.0.0 - dev: true + dev: false /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} @@ -5808,11 +2785,6 @@ packages: is-obj: 2.0.0 dev: true - /dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - dev: true - /dotenv-expand@11.0.6: resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==} engines: {node: '>=12'} @@ -5820,95 +2792,36 @@ packages: dotenv: 16.4.5 dev: true - /dotenv@16.3.2: - resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} - engines: {node: '>=12'} - dev: true - /dotenv@16.4.5: resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} engines: {node: '>=12'} dev: true - /duplexer2@0.1.4: - resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} - dependencies: - readable-stream: 2.3.8 - dev: true - /duplexer@0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: true - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true - - /ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - dependencies: - jsbn: 0.1.1 - safer-buffer: 2.1.2 - dev: true - /ejs@3.1.9: resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.7 - - /electron-to-chromium@1.5.33: - resolution: {integrity: sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==} - - /emitter-listener@1.1.2: - resolution: {integrity: sha512-Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ==} - dependencies: - shimmer: 1.2.1 dev: false - /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} - /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true - - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - dev: true - /enabled@2.0.0: resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} dev: false - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - requiresBuild: true - dependencies: - iconv-lite: 0.6.3 - dev: true - optional: true - /end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 dev: true - /enhanced-resolve@5.17.1: - resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} - engines: {node: '>=10.13.0'} - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - dev: true - /enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} @@ -5923,37 +2836,16 @@ packages: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - /entities@4.3.0: - resolution: {integrity: sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==} - engines: {node: '>=0.12'} - dev: true - /entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} dev: true - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - requiresBuild: true - dev: true - - /envinfo@7.8.1: - resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - dev: true - /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - requiresBuild: true dependencies: is-arrayish: 0.2.1 + dev: true /error-stack-parser@2.1.4: resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} @@ -5961,58 +2853,6 @@ packages: stackframe: 1.3.4 dev: false - /es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} - dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 - is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.2 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.3 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 - string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 - dev: true - /es-define-property@1.0.0: resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} engines: {node: '>= 0.4'} @@ -6025,41 +2865,6 @@ packages: engines: {node: '>= 0.4'} dev: true - /es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - dev: true - - /es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} - dependencies: - es-errors: 1.3.0 - dev: true - - /es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} - dependencies: - get-intrinsic: 1.2.4 - has-tostringtag: 1.0.2 - hasown: 2.0.2 - dev: true - - /es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} - dependencies: - hasown: 2.0.0 - dev: true - - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - dev: true - /es5-ext@0.10.62: resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} engines: {node: '>=0.10'} @@ -6070,10 +2875,6 @@ packages: next-tick: 1.1.0 dev: true - /es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - dev: true - /es6-iterator@2.0.3: resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} dependencies: @@ -6131,6 +2932,7 @@ packages: /escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} + dev: true /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} @@ -6139,17 +2941,6 @@ packages: /escape-string-regexp@2.0.0: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} engines: {node: '>=8'} - - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 dev: true /eslint-config-prettier@7.2.0(eslint@7.18.0): @@ -6159,68 +2950,7 @@ packages: eslint: '>=7.0.0' dependencies: eslint: 7.18.0 - - /eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - dependencies: - debug: 3.2.7 - is-core-module: 2.15.1 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-import-resolver-typescript@3.6.1(eslint-plugin-import@2.31.0)(eslint@7.18.0): - resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' - dependencies: - debug: 4.3.7 - enhanced-resolve: 5.17.1 - eslint: 7.18.0 - eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0) - eslint-plugin-import: 2.31.0(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0) - fast-glob: 3.3.2 - get-tsconfig: 4.8.1 - is-core-module: 2.13.1 - is-glob: 4.0.3 - transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - - supports-color - dev: true - - /eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0): - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - debug: 3.2.7 - eslint: 7.18.0 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(eslint-plugin-import@2.31.0)(eslint@7.18.0) - transitivePeerDependencies: - - supports-color - dev: true + dev: false /eslint-plugin-eslint-comments@3.2.0(eslint@7.18.0): resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} @@ -6231,42 +2961,7 @@ packages: escape-string-regexp: 1.0.5 eslint: 7.18.0 ignore: 5.3.0 - - /eslint-plugin-import@2.31.0(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0): - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - dependencies: - '@rtsao/scc': 1.1.0 - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 7.18.0 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.18.0) - hasown: 2.0.2 - is-core-module: 2.15.1 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - string.prototype.trimend: 1.0.8 - tsconfig-paths: 3.15.0 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true + dev: false /eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} @@ -6274,12 +2969,14 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 + dev: false /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 + dev: false /eslint-utils@3.0.0(eslint@7.18.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} @@ -6294,10 +2991,12 @@ packages: /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} + dev: false /eslint-visitor-keys@2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} + dev: false /eslint@7.18.0: resolution: {integrity: sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ==} @@ -6305,7 +3004,7 @@ packages: deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 '@eslint/eslintrc': 0.3.0 ajv: 6.12.3 chalk: 4.1.2 @@ -6344,6 +3043,7 @@ packages: v8-compile-cache: 2.4.0 transitivePeerDependencies: - supports-color + dev: false /esm@3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} @@ -6357,6 +3057,7 @@ packages: acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 + dev: false /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -6368,20 +3069,24 @@ packages: engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 + dev: false /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 + dev: false /estraverse@4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} + dev: false /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} + dev: false /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -6390,6 +3095,7 @@ packages: /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} + dev: false /event-emitter@0.3.5: resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} @@ -6398,15 +3104,6 @@ packages: es5-ext: 0.10.62 dev: true - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - dev: true - - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - dev: true - /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} @@ -6422,58 +3119,6 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa@5.0.0: - resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.0 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - dev: true - - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - - /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} - - /expand-tilde@2.0.2: - resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} - engines: {node: '>=0.10.0'} - dependencies: - homedir-polyfill: 1.0.3 - dev: true - - /expect@25.5.0: - resolution: {integrity: sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==} - engines: {node: '>= 8.3'} - dependencies: - '@jest/types': 25.5.0 - ansi-styles: 4.3.0 - jest-get-type: 25.2.6 - jest-matcher-utils: 25.5.0 - jest-message-util: 25.5.0 - jest-regex-util: 25.2.6 - dev: true - /expect@29.7.0: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -6483,9 +3128,6 @@ packages: jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 jest-util: 29.7.0 - - /exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} dev: true /ext@1.7.0: @@ -6494,30 +3136,9 @@ packages: type: 2.7.2 dev: true - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - dev: true - - /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - dev: true - - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - dev: true - - /extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - dev: true - /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: false /fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} @@ -6531,9 +3152,11 @@ packages: /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: false /fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: false /fast-safe-stringify@2.0.7: resolution: {integrity: sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==} @@ -6542,6 +3165,7 @@ packages: /fast-uri@3.0.1: resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==} requiresBuild: true + dev: false /fast-xml-parser@4.2.7: resolution: {integrity: sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==} @@ -6555,11 +3179,6 @@ packages: dependencies: reusify: 1.0.4 - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - dependencies: - bser: 2.1.1 - /fecha@4.2.3: resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} dev: false @@ -6576,11 +3195,13 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.2.0 + dev: false /filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: minimatch: 5.1.6 + dev: false /fill-keys@1.0.2: resolution: {integrity: sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==} @@ -6596,39 +3217,12 @@ packages: dependencies: to-regex-range: 5.0.1 - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} dependencies: - commondir: 1.0.1 - make-dir: 3.1.0 - pkg-dir: 4.2.0 - dev: true - - /find-node-modules@2.1.3: - resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} - dependencies: - findup-sync: 4.0.0 - merge: 2.1.1 - dev: true - - /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - dev: true - - /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - dependencies: - locate-path: 2.0.0 - dev: true - - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 + locate-path: 5.0.0 + path-exists: 4.0.0 /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} @@ -6638,28 +3232,11 @@ packages: path-exists: 4.0.0 dev: true - /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - dependencies: - micromatch: 4.0.5 - pkg-dir: 4.2.0 - dev: true - /findit2@2.2.3: resolution: {integrity: sha512-lg/Moejf4qXovVutL0Lz4IsaPoNYMuxt4PA0nGqFxnJ1CTTGGlEO2wKgoDpwknhvZ8k4Q2F+eesgkLbG2Mxfog==} engines: {node: '>=0.8.22'} dev: false - /findup-sync@4.0.0: - resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==} - engines: {node: '>= 8'} - dependencies: - detect-file: 1.0.0 - is-glob: 4.0.3 - micromatch: 4.0.5 - resolve-dir: 1.0.1 - dev: true - /first-chunk-stream@2.0.0: resolution: {integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==} engines: {node: '>=0.10.0'} @@ -6674,6 +3251,7 @@ packages: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 + dev: false /flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} @@ -6682,6 +3260,7 @@ packages: /flatted@3.2.9: resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + dev: false /fn.name@1.1.0: resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} @@ -6705,40 +3284,6 @@ packages: peerDependenciesMeta: debug: optional: true - - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - dependencies: - is-callable: 1.2.7 - dev: true - - /foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} - dependencies: - cross-spawn: 7.0.3 - signal-exit: 3.0.7 - dev: true - - /foreground-child@3.3.0: - resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} - engines: {node: '>=14'} - dependencies: - cross-spawn: 7.0.3 - signal-exit: 4.1.0 - dev: true - - /forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - dev: true - - /form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 dev: true /form-data@3.0.1: @@ -6757,9 +3302,6 @@ packages: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - - /fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} dev: true /front-matter@4.0.2: @@ -6780,23 +3322,6 @@ packages: jsonfile: 6.1.0 universalify: 2.0.1 - /fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: true - /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} @@ -6804,6 +3329,7 @@ packages: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 + dev: false /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} @@ -6815,83 +3341,21 @@ packages: universalify: 2.0.1 dev: true - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} - dependencies: - minipass: 3.3.6 - dev: true - - /fs-minipass@3.0.3: - resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minipass: 7.1.2 - dev: true - /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - optional: true - - /fstream@1.0.12: - resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} - engines: {node: '>=0.6'} - deprecated: This package is no longer supported. - dependencies: - graceful-fs: 4.2.11 - inherits: 2.0.4 - mkdirp: 0.5.6 - rimraf: 2.7.1 - dev: true - /function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - functions-have-names: 1.2.3 dev: true /functional-red-black-tree@1.0.1: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - dev: true - - /gauge@4.0.4: - resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - dependencies: - aproba: 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 - dev: true - - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + dev: false /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} + dev: true /get-func-name@2.0.2: resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} @@ -6911,26 +3375,6 @@ packages: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} dev: true - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} - - /get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} - hasBin: true - dependencies: - '@hutson/parse-repository-url': 3.0.2 - hosted-git-info: 4.1.0 - through2: 2.0.5 - yargs: 16.2.0 - dev: true - - /get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - dev: true - /get-stdin@8.0.0: resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==} engines: {node: '>=10'} @@ -6943,36 +3387,6 @@ packages: pump: 3.0.2 dev: true - /get-stream@6.0.0: - resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} - engines: {node: '>=10'} - dev: true - - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - - /get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - dev: true - - /get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} - dependencies: - resolve-pkg-maps: 1.0.0 - dev: true - - /getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} - dependencies: - assert-plus: 1.0.0 - dev: true - /git-raw-commits@2.0.11: resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} engines: {node: '>=10'} @@ -6985,61 +3399,6 @@ packages: through2: 4.0.2 dev: true - /git-raw-commits@3.0.0: - resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} - engines: {node: '>=14'} - hasBin: true - dependencies: - dargs: 7.0.0 - meow: 8.1.2 - split2: 3.2.2 - dev: true - - /git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} - dependencies: - gitconfiglocal: 1.0.0 - pify: 2.3.0 - dev: true - - /git-semver-tags@4.1.1: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - meow: 8.1.2 - semver: 6.3.1 - dev: true - - /git-semver-tags@5.0.1: - resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} - engines: {node: '>=14'} - hasBin: true - dependencies: - meow: 8.1.2 - semver: 7.3.7 - dev: true - - /git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} - dependencies: - is-ssh: 1.4.0 - parse-url: 8.1.0 - dev: true - - /git-url-parse@13.1.0: - resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==} - dependencies: - git-up: 7.0.0 - dev: true - - /gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} - dependencies: - ini: 1.3.8 - dev: true - /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -7056,34 +3415,6 @@ packages: glob: 7.1.6 dev: true - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: true - - /glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} - hasBin: true - dependencies: - foreground-child: 3.3.0 - jackspeak: 3.4.3 - minimatch: 9.0.5 - minipass: 7.1.2 - package-json-from-dist: 1.0.1 - path-scurry: 1.11.1 - dev: true - - /glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - deprecated: Glob versions prior to v9 are no longer supported - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - /glob@7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} deprecated: Glob versions prior to v9 are no longer supported @@ -7095,49 +3426,6 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - dev: true - - /glob@9.3.5: - resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} - engines: {node: '>=16 || 14 >=14.17'} - dependencies: - fs.realpath: 1.0.0 - minimatch: 8.0.4 - minipass: 4.2.8 - path-scurry: 1.11.1 - dev: true - - /global-directory@4.0.1: - resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} - engines: {node: '>=18'} - requiresBuild: true - dependencies: - ini: 4.1.1 - dev: true - optional: true - /global-dirs@0.1.1: resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} engines: {node: '>=4'} @@ -7145,43 +3433,12 @@ packages: ini: 1.3.8 dev: true - /global-modules@1.0.0: - resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} - engines: {node: '>=0.10.0'} - dependencies: - global-prefix: 1.0.2 - is-windows: 1.0.2 - resolve-dir: 1.0.1 - dev: true - - /global-prefix@1.0.2: - resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} - engines: {node: '>=0.10.0'} - dependencies: - expand-tilde: 2.0.2 - homedir-polyfill: 1.0.3 - ini: 1.3.8 - is-windows: 1.0.2 - which: 1.3.1 - dev: true - - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - /globals@12.4.0: resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==} engines: {node: '>=8'} dependencies: type-fest: 0.8.1 - - /globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} - dependencies: - define-properties: 1.2.1 - gopd: 1.0.1 - dev: true + dev: false /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} @@ -7193,6 +3450,7 @@ packages: ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 + dev: false /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} @@ -7203,46 +3461,11 @@ packages: /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - dev: true - - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true - dependencies: - minimist: 1.2.8 - neo-async: 2.6.2 - source-map: 0.6.1 - wordwrap: 1.0.0 - optionalDependencies: - uglify-js: 3.19.3 - dev: true - - /har-schema@2.0.0: - resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} - engines: {node: '>=4'} - dev: true - - /har-validator@5.1.5: - resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} - engines: {node: '>=6'} - deprecated: this library is no longer supported - dependencies: - ajv: 6.12.3 - har-schema: 2.0.0 - dev: true - /hard-rejection@2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} engines: {node: '>=6'} dev: true - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - dev: true - /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} @@ -7272,112 +3495,22 @@ packages: engines: {node: '>= 0.4'} dev: true - /has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.0.3 + function-bind: 1.1.2 dev: true - /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true - /hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} dependencies: - is-stream: 2.0.1 - type-fest: 0.8.1 - dev: true - - /hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} - engines: {node: '>= 0.4'} - dependencies: - function-bind: 1.1.2 - - /hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - dependencies: - function-bind: 1.1.2 - dev: true - - /homedir-polyfill@1.0.3: - resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} - engines: {node: '>=0.10.0'} - dependencies: - parse-passwd: 1.0.0 - dev: true - - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - dev: true - - /hosted-git-info@3.0.8: - resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} - engines: {node: '>=10'} - dependencies: - lru-cache: 6.0.0 - dev: true - - /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} - dependencies: - lru-cache: 6.0.0 - dev: true - - /hosted-git-info@6.1.1: - resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - lru-cache: 7.18.3 - dev: true - - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} - dependencies: - whatwg-encoding: 2.0.0 - dev: true - - /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - dev: true - - /http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': 1.1.2 - agent-base: 6.0.2 - debug: 4.3.7 - transitivePeerDependencies: - - supports-color - dev: true - - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': 2.0.0 - agent-base: 6.0.2 - debug: 4.3.7 - transitivePeerDependencies: - - supports-color - - /http-signature@1.2.0: - resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} - engines: {node: '>=0.8', npm: '>=1.3.7'} - dependencies: - assert-plus: 1.0.0 - jsprim: 1.4.2 - sshpk: 1.18.0 + lru-cache: 6.0.0 dev: true /https-proxy-agent@5.0.1: @@ -7388,72 +3521,27 @@ packages: debug: 4.3.4 transitivePeerDependencies: - supports-color - - /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - dev: true + dev: false /human-signals@1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} dev: true - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - /humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} - dependencies: - ms: 2.1.3 - dev: true - - /husky@8.0.1: - resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==} - engines: {node: '>=14'} - hasBin: true - dev: true - /i18next@19.0.2: resolution: {integrity: sha512-fBa43Ann2udP1CQAz3IQpOZ1dGAkmi3mMfzisOhH17igneSRbvZ7P2RNbL+L1iRYKMufBmVwnC7G3gqcyviZ9g==} dependencies: '@babel/runtime': 7.23.8 - - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - dependencies: - safer-buffer: 2.1.2 - dev: true - - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - dependencies: - safer-buffer: 2.1.2 - dev: true + dev: false /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} dev: true - /ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - minimatch: 5.1.6 - dev: true - - /ignore-walk@6.0.5: - resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minimatch: 9.0.3 - dev: true - /ignore@4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} + dev: false /ignore@5.3.0: resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} @@ -7466,51 +3554,16 @@ packages: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-in-the-middle@1.11.2: - resolution: {integrity: sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==} - dependencies: - acorn: 8.12.1 - acorn-import-attributes: 1.9.5(acorn@8.12.1) - cjs-module-lexer: 1.4.1 - module-details-from-path: 1.0.3 - dev: false - - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true - dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - dev: true - - /import-local@3.2.0: - resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} - engines: {node: '>=8'} - hasBin: true - dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - - /import-meta-resolve@4.1.0: - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} - requiresBuild: true - dev: true - optional: true - /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} + dev: false /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} dev: true - /infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - dev: true - /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. @@ -7525,61 +3578,6 @@ packages: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} dev: true - /ini@4.1.1: - resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - requiresBuild: true - dev: true - optional: true - - /init-package-json@5.0.0: - resolution: {integrity: sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - npm-package-arg: 10.1.0 - promzard: 1.0.2 - read: 2.1.0 - read-package-json: 6.0.4 - semver: 7.3.7 - validate-npm-package-license: 3.0.4 - validate-npm-package-name: 5.0.0 - dev: true - - /inquirer@8.2.5: - resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} - engines: {node: '>=12.0.0'} - dependencies: - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-width: 3.0.0 - external-editor: 3.1.0 - figures: 3.2.0 - lodash: 4.17.21 - mute-stream: 0.0.8 - ora: 5.4.1 - run-async: 2.4.1 - rxjs: 7.8.1 - string-width: 4.2.3 - strip-ansi: 6.0.1 - through: 2.3.8 - wrap-ansi: 7.0.0 - dev: true - - /internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} - dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.0.6 - dev: true - - /interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - dev: true - /intl-messageformat-parser@6.1.2: resolution: {integrity: sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==} deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser @@ -7588,80 +3586,18 @@ packages: tslib: 2.7.0 dev: true - /ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} - dependencies: - jsbn: 1.1.0 - sprintf-js: 1.1.3 - dev: true - - /is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - dev: true - /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - requiresBuild: true + dev: true /is-arrayish@0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} dev: false - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - dependencies: - has-bigints: 1.0.2 - dev: true - - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - dev: true - - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - dev: true - - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true - dependencies: - ci-info: 3.9.0 - dev: true - /is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: hasown: 2.0.0 - - /is-core-module@2.15.1: - resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} - engines: {node: '>= 0.4'} - dependencies: - hasown: 2.0.2 - dev: true - - /is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} - dependencies: - is-typed-array: 1.1.13 - dev: true - - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.2 dev: true /is-docker@2.2.1: @@ -7678,10 +3614,6 @@ packages: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} - /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -7693,22 +3625,6 @@ packages: engines: {node: '>=8'} dev: true - /is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - dev: true - - /is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - dev: true - - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.2 - dev: true - /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -7732,82 +3648,19 @@ packages: engines: {node: '>=0.10.0'} dev: true - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} - dependencies: - isobject: 3.0.1 - dev: true - - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - dev: true - - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - dev: true - /is-promise@2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} dev: true - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - dev: true - /is-regexp@1.0.0: resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} engines: {node: '>=0.10.0'} dev: true - /is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - dev: true - - /is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} - dependencies: - protocols: 2.0.1 - dev: true - - /is-stream@2.0.0: - resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} - engines: {node: '>=8'} - dev: true - /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.2 - dev: true - - /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} - dependencies: - better-path-resolve: 1.0.0 - dev: true - - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.3 - dev: true - /is-text-path@1.0.1: resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} engines: {node: '>=0.10.0'} @@ -7815,17 +3668,6 @@ packages: text-extensions: 1.9.0 dev: true - /is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} - dependencies: - which-typed-array: 1.1.15 - dev: true - - /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - dev: true - /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} @@ -7833,17 +3675,7 @@ packages: /is-utf8@0.2.1: resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} - - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - dependencies: - call-bind: 1.0.7 - dev: true - - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: true + dev: false /is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} @@ -7854,6 +3686,7 @@ packages: /isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + dev: false /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} @@ -7867,270 +3700,16 @@ packages: /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - dev: true - - /isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - dev: true - - /istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} - - /istanbul-lib-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} - dependencies: - append-transform: 2.0.0 - dev: true - - /istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} - dependencies: - '@babel/core': 7.25.7 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} - dependencies: - '@babel/core': 7.25.7 - '@babel/parser': 7.25.7 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - /istanbul-lib-instrument@6.0.3: - resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} - engines: {node: '>=10'} - dependencies: - '@babel/core': 7.25.7 - '@babel/parser': 7.25.7 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - /istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} - dependencies: - archy: 1.0.0 - cross-spawn: 7.0.3 - istanbul-lib-coverage: 3.2.2 - p-map: 3.0.0 - rimraf: 3.0.2 - uuid: 8.3.2 - dev: true - - /istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} - dependencies: - istanbul-lib-coverage: 3.2.2 - make-dir: 4.0.0 - supports-color: 7.2.0 - - /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} - dependencies: - debug: 4.3.7 - istanbul-lib-coverage: 3.2.2 - source-map: 0.6.1 - transitivePeerDependencies: - - supports-color - - /istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} - dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.1 - - /jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 - dev: true - - /jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} - hasBin: true + /jake@10.8.7: + resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} + engines: {node: '>=10'} + hasBin: true dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 - - /jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - execa: 5.1.1 - jest-util: 29.7.0 - p-limit: 3.1.0 - - /jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - chalk: 4.1.2 - co: 4.6.0 - dedent: 1.5.3 - is-generator-fn: 2.1.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.1.0 - slash: 3.0.0 - stack-utils: 2.0.6 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - /jest-cli@29.7.0(@types/node@18.11.9)(ts-node@8.5.2): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 29.7.0(ts-node@8.5.2) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) - exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - /jest-config@29.5.0(@types/node@18.11.9)(ts-node@8.5.2): - resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} - 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 - dependencies: - '@babel/core': 7.25.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - babel-jest: 29.7.0(@babel/core@7.25.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.1.6 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.5.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.5 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - ts-node: 8.5.2(typescript@4.9.4) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - dev: true - - /jest-config@29.7.0(@types/node@18.11.9)(ts-node@8.5.2): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - 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 - dependencies: - '@babel/core': 7.25.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - babel-jest: 29.7.0(@babel/core@7.25.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.1.6 - graceful-fs: 4.2.11 - 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.5 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - ts-node: 8.5.2(typescript@4.9.4) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - /jest-diff@25.5.0: - resolution: {integrity: sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==} - engines: {node: '>= 8.3'} - dependencies: - chalk: 3.0.0 - diff-sequences: 25.2.6 - jest-get-type: 25.2.6 - pretty-format: 25.5.0 - dev: true + dev: false /jest-diff@29.7.0: resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} @@ -8141,78 +3720,7 @@ packages: jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - detect-newline: 3.1.0 - - /jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - jest-get-type: 29.6.3 - jest-util: 29.7.0 - pretty-format: 29.7.0 - - /jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/jsdom': 20.0.1 - '@types/node': 18.11.9 - jest-mock: 29.7.0 - jest-util: 29.7.0 - jsdom: 20.0.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: true - - /jest-environment-node@29.5.0: - resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - jest-mock: 29.7.0 - jest-util: 29.7.0 - dev: true - - /jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - jest-mock: 29.7.0 - jest-util: 29.7.0 - - /jest-esm-transformer@1.0.0: - resolution: {integrity: sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==} - dependencies: - '@babel/core': 7.25.7 - '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7) - transitivePeerDependencies: - - supports-color - dev: true - - /jest-extended@3.2.3(jest@29.5.0): + /jest-extended@3.2.3: resolution: {integrity: sha512-YcdjfFv3+N2AiWq4aG6gT/r1mfLtDKnbXs0hKXNlL/hf37TKQJTlh2zNwuMUYnvwKRRMtO/X9CfZU1EmOgUREA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -8221,379 +3729,49 @@ packages: jest: optional: true dependencies: - jest: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) jest-diff: 29.7.0 jest-get-type: 29.6.3 - /jest-get-type@25.2.6: - resolution: {integrity: sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==} - engines: {node: '>= 8.3'} - dev: true - /jest-get-type@29.6.3: resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.9 - '@types/node': 18.11.9 - anymatch: 3.1.3 - fb-watchman: 2.0.2 - graceful-fs: 4.2.11 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - jest-worker: 29.7.0 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.3 - - /jest-junit@15.0.0: - resolution: {integrity: sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg==} - engines: {node: '>=10.12.0'} - dependencies: - mkdirp: 1.0.4 - strip-ansi: 6.0.1 - uuid: 8.3.2 - xml: 1.0.1 - dev: true - - /jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.6.3 - pretty-format: 29.7.0 - - /jest-matcher-utils@25.5.0: - resolution: {integrity: sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==} - engines: {node: '>= 8.3'} - dependencies: - chalk: 3.0.0 - jest-diff: 25.5.0 - jest-get-type: 25.2.6 - pretty-format: 25.5.0 - dev: true - /jest-matcher-utils@29.7.0: resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 29.7.0 - jest-get-type: 29.6.3 - pretty-format: 29.7.0 - - /jest-message-util@25.5.0: - resolution: {integrity: sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==} - engines: {node: '>= 8.3'} - dependencies: - '@babel/code-frame': 7.24.7 - '@jest/types': 25.5.0 - '@types/stack-utils': 1.0.1 - chalk: 3.0.0 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - slash: 3.0.0 - stack-utils: 1.0.5 - dev: true - - /jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/code-frame': 7.24.7 - '@jest/types': 29.6.3 - '@types/stack-utils': 2.0.3 - chalk: 4.1.2 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - stack-utils: 2.0.6 - - /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - jest-util: 29.7.0 - - /jest-pnp-resolver@1.2.3(jest-resolve@25.5.1): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 25.5.1 - dev: true - - /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 29.7.0 - - /jest-regex-util@25.2.6: - resolution: {integrity: sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==} - engines: {node: '>= 8.3'} - dev: true - - /jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - /jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-regex-util: 29.6.3 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color - - /jest-resolve@25.5.1: - resolution: {integrity: sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==} - engines: {node: '>= 8.3'} - dependencies: - '@jest/types': 25.5.0 - browser-resolve: 1.11.3 - chalk: 3.0.0 - graceful-fs: 4.2.11 - jest-pnp-resolver: 1.2.3(jest-resolve@25.5.1) - read-pkg-up: 7.0.1 - realpath-native: 2.0.0 - resolve: 1.22.8 - slash: 3.0.0 - dev: true - - /jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - chalk: 4.1.2 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) - jest-util: 29.7.0 - jest-validate: 29.7.0 - resolve: 1.22.8 - resolve.exports: 2.0.2 - slash: 3.0.0 - - /jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/console': 29.7.0 - '@jest/environment': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - chalk: 4.1.2 - emittery: 0.13.1 - graceful-fs: 4.2.11 - 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 - transitivePeerDependencies: - - supports-color - - /jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - 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': 18.11.9 - chalk: 4.1.2 - cjs-module-lexer: 1.4.1 - collect-v8-coverage: 1.0.2 - glob: 7.1.6 - graceful-fs: 4.2.11 - 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 - transitivePeerDependencies: - - supports-color - - /jest-snapshot@25.5.1: - resolution: {integrity: sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==} - engines: {node: '>= 8.3'} - dependencies: - '@babel/types': 7.25.7 - '@jest/types': 25.5.0 - '@types/prettier': 1.19.1 - chalk: 3.0.0 - expect: 25.5.0 - graceful-fs: 4.2.11 - jest-diff: 25.5.0 - jest-get-type: 25.2.6 - jest-matcher-utils: 25.5.0 - jest-message-util: 25.5.0 - jest-resolve: 25.5.1 - make-dir: 3.1.0 - natural-compare: 1.4.0 - pretty-format: 25.5.0 - semver: 6.3.1 - dev: true - - /jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': 7.25.7 - '@babel/generator': 7.25.7 - '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7) - '@babel/types': 7.25.7 - '@jest/expect-utils': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.7) - chalk: 4.1.2 - expect: 29.7.0 - graceful-fs: 4.2.11 - jest-diff: 29.7.0 - jest-get-type: 29.6.3 - jest-matcher-utils: 29.7.0 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - natural-compare: 1.4.0 - pretty-format: 29.7.0 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - /jest-sonar@0.2.16: - resolution: {integrity: sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==} - dependencies: - entities: 4.3.0 - strip-ansi: 6.0.1 - dev: true - - /jest-specific-snapshot@3.0.0(jest@29.5.0): - resolution: {integrity: sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==} - peerDependencies: - jest: '>= 25.0.0' - dependencies: - jest: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) - jest-snapshot: 25.5.1 - dev: true - - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - '@types/node': 18.11.9 - chalk: 4.1.2 - ci-info: 3.9.0 - graceful-fs: 4.2.11 - picomatch: 2.3.1 - - /jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - camelcase: 6.3.0 - chalk: 4.1.2 + jest-diff: 29.7.0 jest-get-type: 29.6.3 - leven: 3.1.0 pretty-format: 29.7.0 + dev: true - /jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + /jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.7.0 + '@babel/code-frame': 7.25.7 '@jest/types': 29.6.3 - '@types/node': 18.11.9 - ansi-escapes: 4.3.2 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 - emittery: 0.13.1 - jest-util: 29.7.0 - string-length: 4.0.2 - - /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} - dependencies: - '@types/node': 18.11.9 - merge-stream: 2.0.0 - supports-color: 8.1.1 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 dev: true - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@types/node': 18.11.9 - jest-util: 29.7.0 - merge-stream: 2.0.0 - supports-color: 8.1.1 - - /jest@29.5.0(@types/node@18.11.9)(ts-node@8.5.2): - resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true dependencies: - '@jest/core': 29.7.0(ts-node@8.5.2) '@jest/types': 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@18.11.9)(ts-node@8.5.2) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - /jiti@1.21.6: - resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} - hasBin: true - requiresBuild: true + '@types/node': 18.11.9 + chalk: 4.1.2 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 dev: true - optional: true /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -8611,74 +3789,18 @@ packages: dependencies: argparse: 2.0.1 - /jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - dev: true - - /jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - dev: true - - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - dependencies: - abab: 2.0.6 - acorn: 8.12.1 - acorn-globals: 7.0.1 - cssom: 0.5.0 - cssstyle: 2.3.0 - data-urls: 3.0.2 - decimal.js: 10.4.3 - domexception: 4.0.0 - escodegen: 2.1.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.13 - parse5: 7.1.2 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.4 - 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.18.0 - xml-name-validator: 4.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: true - - /jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} - hasBin: true - /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - dev: true + dev: false /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - requiresBuild: true + dev: true /json-parse-even-better-errors@3.0.2: resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: false /json-schema-ref-parser@9.0.9: resolution: {integrity: sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==} @@ -8711,17 +3833,16 @@ packages: /json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: false /json-schema-traverse@1.0.0: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} requiresBuild: true - - /json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - dev: true + dev: false /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: false /json-stable-stringify@1.1.1: resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==} @@ -8737,17 +3858,11 @@ packages: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} dev: true - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true - dependencies: - minimist: 1.2.8 - dev: true - /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true + dev: true /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} @@ -8756,6 +3871,7 @@ packages: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 + dev: false /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} @@ -8773,20 +3889,11 @@ packages: engines: {'0': node >= 0.2.0} dev: true - /jsprim@1.4.2: - resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} - engines: {node: '>=0.6.0'} - dependencies: - assert-plus: 1.0.0 - extsprintf: 1.3.0 - json-schema: 0.4.0 - verror: 1.10.0 - dev: true - /keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 + dev: false /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} @@ -8797,154 +3904,23 @@ packages: resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==} dependencies: graceful-fs: 4.2.11 - - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true + dev: false /kuler@2.0.0: resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} dev: false - /lcov-parse@1.0.0: - resolution: {integrity: sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==} - hasBin: true - dev: true - - /lerna@7.4.2: - resolution: {integrity: sha512-gxavfzHfJ4JL30OvMunmlm4Anw7d7Tq6tdVHzUukLdS9nWnxCN/QB21qR+VJYp5tcyXogHKbdUEGh6qmeyzxSA==} - engines: {node: '>=16.0.0'} - hasBin: true - dependencies: - '@lerna/child-process': 7.4.2 - '@lerna/create': 7.4.2(typescript@4.9.4) - '@npmcli/run-script': 6.0.2 - '@nx/devkit': 16.10.0(nx@16.10.0) - '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.11 - byte-size: 8.1.1 - chalk: 4.1.0 - clone-deep: 4.0.1 - cmd-shim: 6.0.1 - columnify: 1.6.0 - conventional-changelog-angular: 7.0.0 - conventional-changelog-core: 5.0.1 - conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@4.9.4) - dedent: 0.7.0 - envinfo: 7.8.1 - execa: 5.0.0 - fs-extra: 11.2.0 - get-port: 5.1.1 - get-stream: 6.0.0 - git-url-parse: 13.1.0 - glob-parent: 5.1.2 - globby: 11.1.0 - graceful-fs: 4.2.11 - has-unicode: 2.0.1 - import-local: 3.1.0 - ini: 1.3.8 - init-package-json: 5.0.0 - inquirer: 8.2.5 - is-ci: 3.0.1 - is-stream: 2.0.0 - jest-diff: 29.7.0 - js-yaml: 4.1.0 - libnpmaccess: 7.0.2 - libnpmpublish: 7.3.0 - load-json-file: 6.2.0 - lodash: 4.17.21 - make-dir: 4.0.0 - minimatch: 3.0.5 - multimatch: 5.0.0 - node-fetch: 2.6.7 - npm-package-arg: 8.1.1 - npm-packlist: 5.1.1 - npm-registry-fetch: 14.0.5 - npmlog: 6.0.2 - nx: 16.10.0 - p-map: 4.0.0 - p-map-series: 2.1.0 - p-pipe: 3.1.0 - p-queue: 6.6.2 - p-reduce: 2.1.0 - p-waterfall: 2.1.1 - pacote: 15.2.0 - pify: 5.0.0 - read-cmd-shim: 4.0.0 - read-package-json: 6.0.4 - resolve-from: 5.0.0 - rimraf: 4.4.1 - semver: 7.5.4 - signal-exit: 3.0.7 - slash: 3.0.0 - ssri: 9.0.1 - strong-log-transformer: 2.1.0 - tar: 6.1.11 - temp-dir: 1.0.0 - typescript: 4.9.4 - upath: 2.0.1 - uuid: 9.0.1 - validate-npm-package-license: 3.0.4 - validate-npm-package-name: 5.0.0 - write-file-atomic: 5.0.1 - write-pkg: 4.0.0 - yargs: 16.2.0 - yargs-parser: 20.2.4 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - bluebird - - debug - - encoding - - supports-color - dev: true - - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - - /libnpmaccess@7.0.2: - resolution: {integrity: sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - npm-package-arg: 10.1.0 - npm-registry-fetch: 14.0.5 - transitivePeerDependencies: - - supports-color - dev: true - - /libnpmpublish@7.3.0: - resolution: {integrity: sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - ci-info: 3.9.0 - normalize-package-data: 5.0.0 - npm-package-arg: 10.1.0 - npm-registry-fetch: 14.0.5 - proc-log: 3.0.0 - semver: 7.3.7 - sigstore: 1.9.0 - ssri: 10.0.6 - transitivePeerDependencies: - - supports-color - dev: true + dev: false /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - requiresBuild: true + dev: true /lines-and-columns@2.0.3: resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} @@ -8974,10 +3950,6 @@ packages: - supports-color dev: true - /listenercount@1.0.1: - resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} - dev: true - /listr2@3.14.0(enquirer@2.4.1): resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} engines: {node: '>=10.0.0'} @@ -8998,58 +3970,6 @@ packages: wrap-ansi: 7.0.0 dev: true - /load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} - dependencies: - graceful-fs: 4.2.11 - parse-json: 4.0.0 - pify: 3.0.0 - strip-bom: 3.0.0 - dev: true - - /load-json-file@6.2.0: - resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: '>=8'} - dependencies: - graceful-fs: 4.2.11 - parse-json: 5.2.0 - strip-bom: 4.0.0 - type-fest: 0.6.0 - dev: true - - /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - dev: true - - /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - dev: true - - /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - dev: true - - /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} - dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 - dev: true - /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} @@ -9063,55 +3983,13 @@ packages: p-locate: 5.0.0 dev: true - /lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} - dev: true - - /lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - dev: true - - /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - requiresBuild: true - dev: true - optional: true - - /lodash.map@4.6.0: - resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} - dev: true - /lodash.mapvalues@4.6.0: resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} - - /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - dev: true - - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - requiresBuild: true - dev: true - optional: true - - /lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} - requiresBuild: true - dev: true - optional: true - - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: true + dev: false /lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - requiresBuild: true - dev: true - optional: true + dev: false /lodash@4.17.15: resolution: {integrity: sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==} @@ -9123,11 +4001,6 @@ packages: /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - /log-driver@1.2.7: - resolution: {integrity: sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==} - engines: {node: '>=0.8.6'} - dev: true - /log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} @@ -9158,11 +4031,6 @@ packages: triple-beam: 1.3.0 dev: false - /longest@2.0.1: - resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==} - engines: {node: '>=0.10.0'} - dev: true - /loud-rejection@2.2.0: resolution: {integrity: sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ==} engines: {node: '>=8'} @@ -9171,122 +4039,28 @@ packages: signal-exit: 3.0.7 dev: true - /lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - dev: true - - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - dev: true - - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - dependencies: - yallist: 3.1.1 - /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} dependencies: yallist: 4.0.0 - /lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - dev: true - /lru-queue@0.1.0: resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} dependencies: es5-ext: 0.10.62 dev: true - /magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + /magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} dependencies: '@jridgewell/sourcemap-codec': 1.5.0 dev: true - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - dependencies: - pify: 4.0.1 - semver: 5.7.2 - dev: true - - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} - dependencies: - semver: 6.3.1 - dev: true - - /make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - dependencies: - semver: 7.5.4 - /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - - /make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - agentkeepalive: 4.5.0 - cacache: 16.1.3 - http-cache-semantics: 4.1.1 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-lambda: 1.0.1 - lru-cache: 7.18.3 - minipass: 3.3.6 - minipass-collect: 1.0.2 - minipass-fetch: 2.1.2 - 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: 9.0.1 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - - /make-fetch-happen@11.1.1: - resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - agentkeepalive: 4.5.0 - cacache: 17.1.4 - http-cache-semantics: 4.1.1 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-lambda: 1.0.1 - lru-cache: 7.18.3 - minipass: 5.0.0 - minipass-fetch: 3.0.5 - 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.6 - transitivePeerDependencies: - - supports-color dev: true - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - dependencies: - tmpl: 1.0.5 - /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} @@ -9336,35 +4110,13 @@ packages: resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} dependencies: d: 1.0.1 - es5-ext: 0.10.62 - es6-weak-map: 2.0.3 - event-emitter: 0.3.5 - is-promise: 2.2.2 - lru-queue: 0.1.0 - next-tick: 1.1.0 - timers-ext: 0.1.7 - dev: true - - /memorystream@0.3.1: - resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} - engines: {node: '>= 0.10.0'} - dev: true - - /meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} - dependencies: - '@types/minimist': 1.2.5 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 2.5.0 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.13.1 - yargs-parser: 18.1.3 + es5-ext: 0.10.62 + es6-weak-map: 2.0.3 + event-emitter: 0.3.5 + is-promise: 2.2.2 + lru-queue: 0.1.0 + next-tick: 1.1.0 + timers-ext: 0.1.7 dev: true /meow@8.1.2: @@ -9390,15 +4142,12 @@ packages: /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /merge@2.1.1: - resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} - dev: true - /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -9409,28 +4158,25 @@ packages: /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} + dev: true /mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 + dev: true /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} + dev: true /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} dev: true - /minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} - dependencies: - brace-expansion: 1.1.11 - dev: true - /minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: @@ -9441,13 +4187,7 @@ packages: engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 - - /minimatch@8.0.4: - resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} - engines: {node: '>=16 || 14 >=14.17'} - dependencies: - brace-expansion: 2.0.1 - dev: true + dev: false /minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} @@ -9456,13 +4196,6 @@ packages: brace-expansion: 2.0.1 dev: true - /minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - dependencies: - brace-expansion: 2.0.1 - dev: true - /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -9472,113 +4205,10 @@ packages: kind-of: 6.0.3 dev: true - /minimist@1.2.7: - resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} - dev: true - /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true - /minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} - dependencies: - minipass: 3.3.6 - dev: true - - /minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - minipass: 3.3.6 - minipass-sized: 1.0.3 - minizlib: 2.1.2 - optionalDependencies: - encoding: 0.1.13 - dev: true - - /minipass-fetch@3.0.5: - resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minipass: 7.1.2 - minipass-sized: 1.0.3 - minizlib: 2.1.2 - optionalDependencies: - encoding: 0.1.13 - dev: true - - /minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} - dependencies: - minipass: 3.3.6 - dev: true - - /minipass-json-stream@1.0.2: - resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==} - dependencies: - jsonparse: 1.3.1 - minipass: 3.3.6 - dev: true - - /minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} - dependencies: - minipass: 3.3.6 - dev: true - - /minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} - dependencies: - minipass: 3.3.6 - dev: true - - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} - dependencies: - yallist: 4.0.0 - dev: true - - /minipass@4.2.8: - resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} - engines: {node: '>=8'} - dev: true - - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - dev: true - - /minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - dev: true - - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} - dependencies: - minipass: 3.3.6 - yallist: 4.0.0 - dev: true - - /mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - dev: true - - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - dependencies: - minimist: 1.2.8 - dev: true - /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} @@ -9590,21 +4220,13 @@ packages: engines: {node: '>=12.0.0'} dev: true - /modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} - dev: true - - /module-details-from-path@1.0.3: - resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} - dev: false - /module-not-found-error@1.0.1: resolution: {integrity: sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==} dev: true /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: false /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -9618,15 +4240,7 @@ packages: array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 - - /mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - dev: true - - /mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + dev: false /mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} @@ -9644,40 +4258,12 @@ packages: /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - dev: true - - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - dev: true + dev: false /next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: true - /nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - dev: true - - /node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - dev: true - - /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - dependencies: - whatwg-url: 5.0.0 - dev: true - /node-fetch@2.6.9: resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} engines: {node: 4.x || >=6.0.0} @@ -9689,57 +4275,10 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-gyp-build@4.8.2: - resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==} - hasBin: true - dev: true - - /node-gyp@9.4.1: - resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} - engines: {node: ^12.13 || ^14.13 || >=16} - hasBin: true - dependencies: - env-paths: 2.2.1 - exponential-backoff: 3.1.1 - glob: 7.1.6 - graceful-fs: 4.2.11 - make-fetch-happen: 10.2.1 - nopt: 6.0.0 - npmlog: 6.0.2 - rimraf: 3.0.2 - semver: 7.3.7 - tar: 6.1.11 - which: 2.0.2 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - /node-machine-id@1.1.12: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} - dependencies: - process-on-spawn: 1.0.0 - dev: true - - /node-releases@2.0.18: - resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - - /nopt@6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - dependencies: - abbrev: 1.1.1 - dev: true - /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: @@ -9759,210 +4298,15 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data@5.0.0: - resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - hosted-git-info: 6.1.1 - is-core-module: 2.13.1 - semver: 7.3.7 - validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - /npm-bundled@1.1.2: - resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} - dependencies: - npm-normalize-package-bin: 1.0.1 - dev: true - - /npm-bundled@3.0.1: - resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - npm-normalize-package-bin: 3.0.1 - dev: true - - /npm-install-checks@6.3.0: - resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - semver: 7.3.7 - dev: true - - /npm-normalize-package-bin@1.0.1: - resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} - dev: true - - /npm-normalize-package-bin@3.0.1: - resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /npm-package-arg@10.1.0: - resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - hosted-git-info: 6.1.1 - proc-log: 3.0.0 - semver: 7.3.7 - validate-npm-package-name: 5.0.0 - dev: true - - /npm-package-arg@8.1.1: - resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} - engines: {node: '>=10'} - dependencies: - hosted-git-info: 3.0.8 - semver: 7.3.7 - validate-npm-package-name: 3.0.0 - dev: true - - /npm-packlist@5.1.1: - resolution: {integrity: sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - dependencies: - glob: 8.1.0 - ignore-walk: 5.0.1 - npm-bundled: 1.1.2 - npm-normalize-package-bin: 1.0.1 - dev: true - - /npm-packlist@7.0.4: - resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - ignore-walk: 6.0.5 - dev: true - - /npm-pick-manifest@8.0.2: - resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - npm-install-checks: 6.3.0 - npm-normalize-package-bin: 3.0.1 - npm-package-arg: 10.1.0 - semver: 7.3.7 - dev: true - - /npm-registry-fetch@14.0.5: - resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - make-fetch-happen: 11.1.1 - minipass: 5.0.0 - minipass-fetch: 3.0.5 - minipass-json-stream: 1.0.2 - minizlib: 2.1.2 - npm-package-arg: 10.1.0 - proc-log: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /npm-run-all@4.1.5: - resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} - engines: {node: '>= 4'} - hasBin: true - dependencies: - ansi-styles: 3.2.1 - chalk: 2.4.2 - cross-spawn: 6.0.5 - memorystream: 0.3.1 - minimatch: 3.1.2 - pidtree: 0.3.1 - read-pkg: 3.0.0 - shell-quote: 1.8.1 - string.prototype.padend: 3.1.6 - dev: true - - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - dependencies: - path-key: 3.1.1 - - /npmlog@6.0.2: - resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - dependencies: - are-we-there-yet: 3.0.1 - console-control-strings: 1.1.0 - gauge: 4.0.4 - set-blocking: 2.0.0 - dev: true - - /nwsapi@2.2.13: - resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==} - dev: true - - /nx@16.10.0: - resolution: {integrity: sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.6.7 - '@swc/core': ^1.3.85 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true - dependencies: - '@nrwl/tao': 16.10.0 - '@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.6.1 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.6.1 - cliui: 8.0.1 - dotenv: 16.3.2 - dotenv-expand: 10.0.0 - enquirer: 2.3.6 - figures: 3.2.0 - flat: 5.0.2 - fs-extra: 11.2.0 - glob: 7.1.4 - ignore: 5.3.0 - jest-diff: 29.7.0 - 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.2 - 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.2.0 - tslib: 2.7.0 - v8-compile-cache: 2.3.0 - yargs: 17.7.2 - yargs-parser: 21.1.1 - optionalDependencies: - '@nx/nx-darwin-arm64': 16.10.0 - '@nx/nx-darwin-x64': 16.10.0 - '@nx/nx-freebsd-x64': 16.10.0 - '@nx/nx-linux-arm-gnueabihf': 16.10.0 - '@nx/nx-linux-arm64-gnu': 16.10.0 - '@nx/nx-linux-arm64-musl': 16.10.0 - '@nx/nx-linux-x64-gnu': 16.10.0 - '@nx/nx-linux-x64-musl': 16.10.0 - '@nx/nx-win32-arm64-msvc': 16.10.0 - '@nx/nx-win32-x64-msvc': 16.10.0 - transitivePeerDependencies: - - debug + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 dev: true /nx@19.8.4: @@ -10027,99 +4371,16 @@ packages: - debug dev: true - /nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} - hasBin: true - dependencies: - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - caching-transform: 4.0.0 - convert-source-map: 1.9.0 - decamelize: 1.2.0 - find-cache-dir: 3.3.2 - find-up: 4.1.0 - foreground-child: 2.0.0 - get-package-type: 0.1.0 - glob: 7.1.6 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-hook: 3.0.0 - istanbul-lib-instrument: 4.0.3 - istanbul-lib-processinfo: 2.0.3 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.7 - make-dir: 3.1.0 - node-preload: 0.2.1 - p-map: 3.0.0 - process-on-spawn: 1.0.0 - resolve-from: 5.0.0 - rimraf: 3.0.2 - signal-exit: 3.0.7 - spawn-wrap: 2.0.0 - test-exclude: 6.0.0 - yargs: 15.4.1 - transitivePeerDependencies: - - supports-color - dev: true - - /oauth-sign@0.9.0: - resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} - dev: true - /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} dev: true - /object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} - dev: true - /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} dev: true - /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - dev: true - - /object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - dev: true - - /object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - dev: true - - /object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - dev: true - /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: @@ -10136,6 +4397,7 @@ packages: engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 + dev: true /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} @@ -10156,6 +4418,7 @@ packages: levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + dev: false /ora@5.3.0: resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} @@ -10164,56 +4427,13 @@ packages: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.9.2 - is-interactive: 1.0.0 - log-symbols: 4.1.0 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - dev: true - - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} - dependencies: - bl: 4.1.0 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.9.2 + cli-spinners: 2.6.1 is-interactive: 1.0.0 - is-unicode-supported: 0.1.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 dev: true - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true - - /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - dev: true - - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} - dependencies: - p-map: 2.1.0 - dev: true - - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - dev: true - - /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - dependencies: - p-try: 1.0.0 - dev: true - /p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -10225,12 +4445,6 @@ packages: engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 - - /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - dependencies: - p-limit: 1.3.0 dev: true /p-locate@4.1.0: @@ -10246,23 +4460,6 @@ packages: p-limit: 3.1.0 dev: true - /p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} - dev: true - - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - dev: true - - /p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} - dependencies: - aggregate-error: 3.1.0 - dev: true - /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} @@ -10270,89 +4467,10 @@ packages: aggregate-error: 3.1.0 dev: true - /p-pipe@3.1.0: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} - engines: {node: '>=8'} - dev: true - - /p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} - dependencies: - eventemitter3: 4.0.7 - p-timeout: 3.2.0 - dev: true - - /p-reduce@2.1.0: - resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} - engines: {node: '>=8'} - dev: true - - /p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} - dependencies: - p-finally: 1.0.0 - dev: true - - /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - dev: true - /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - /p-waterfall@2.1.1: - resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} - engines: {node: '>=8'} - dependencies: - p-reduce: 2.1.0 - dev: true - - /package-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} - dependencies: - graceful-fs: 4.2.11 - hasha: 5.2.2 - lodash.flattendeep: 4.4.0 - release-zalgo: 1.0.0 - dev: true - - /package-json-from-dist@1.0.1: - resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - dev: true - - /pacote@15.2.0: - resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - '@npmcli/git': 4.1.0 - '@npmcli/installed-package-contents': 2.1.0 - '@npmcli/promise-spawn': 6.0.2 - '@npmcli/run-script': 6.0.2 - cacache: 17.1.4 - fs-minipass: 3.0.3 - minipass: 5.0.0 - npm-package-arg: 10.1.0 - npm-packlist: 7.0.4 - npm-pick-manifest: 8.0.2 - npm-registry-fetch: 14.0.5 - proc-log: 3.0.0 - promise-retry: 2.0.1 - read-package-json: 6.0.4 - read-package-json-fast: 3.0.2 - sigstore: 1.9.0 - ssri: 10.0.6 - tar: 6.1.11 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -10360,49 +4478,14 @@ packages: dependencies: callsites: 3.1.0 - /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} - dependencies: - error-ex: 1.3.2 - json-parse-better-errors: 1.0.2 - dev: true - /parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - - /parse-passwd@1.0.0: - resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} - engines: {node: '>=0.10.0'} - dev: true - - /parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} - dependencies: - protocols: 2.0.1 - dev: true - - /parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} - dependencies: - parse-path: 7.0.0 - dev: true - - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - dependencies: - entities: 4.5.0 - dev: true - - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} dev: true /path-exists@4.0.0: @@ -10413,11 +4496,6 @@ packages: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - dev: true - /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} @@ -10425,21 +4503,6 @@ packages: /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - /path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} - dependencies: - lru-cache: 10.4.3 - minipass: 7.1.2 - dev: true - - /path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} - dependencies: - pify: 3.0.0 - dev: true - /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} @@ -10447,10 +4510,6 @@ packages: /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - /performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - dev: true - /picocolors@1.1.0: resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} @@ -10458,40 +4517,10 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - /pidtree@0.3.1: - resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} - engines: {node: '>=0.10'} - hasBin: true - dev: true - /pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} - - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} - dev: true - - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - dev: true - - /pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - dev: true - - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} - dependencies: - find-up: 4.1.0 + dev: false /please-upgrade-node@3.2.0: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} @@ -10499,11 +4528,6 @@ packages: semver-compare: 1.0.0 dev: true - /possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} - dev: true - /postcss@8.4.47: resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} @@ -10513,35 +4537,16 @@ packages: source-map-js: 1.2.1 dev: true - /preferred-pm@3.1.4: - resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} - engines: {node: '>=10'} - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.2.0 - dev: true - /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} + dev: false /prettier@2.8.7: resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} engines: {node: '>=10.13.0'} hasBin: true - /pretty-format@25.5.0: - resolution: {integrity: sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==} - engines: {node: '>= 8.3'} - dependencies: - '@jest/types': 25.5.0 - ansi-regex: 5.0.1 - ansi-styles: 4.3.0 - react-is: 16.13.1 - dev: true - /pretty-format@29.7.0: resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -10550,59 +4555,14 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - /process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} - dependencies: - fromentries: 1.3.2 - dev: true + dev: false /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} - - /promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dev: true - - /promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} - dependencies: - err-code: 2.0.3 - retry: 0.12.0 - dev: true - - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 - - /promzard@1.0.2: - resolution: {integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - read: 3.0.1 - dev: true - - /protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - dev: true + dev: false /proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} @@ -10615,14 +4575,6 @@ packages: resolve: 1.22.8 dev: true - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: true - - /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - dev: true - /pump@3.0.2: resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} dependencies: @@ -10633,9 +4585,7 @@ packages: /punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - - /pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + dev: false /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} @@ -10646,15 +4596,6 @@ packages: (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) dev: true - /qs@6.5.3: - resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} - engines: {node: '>=0.6'} - dev: true - - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - dev: true - /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -10663,50 +4604,9 @@ packages: engines: {node: '>=8'} dev: true - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - dependencies: - safe-buffer: 5.2.1 - dev: true - - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - dev: true - /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /read-cmd-shim@4.0.0: - resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /read-package-json-fast@3.0.2: - resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - json-parse-even-better-errors: 3.0.2 - npm-normalize-package-bin: 3.0.1 - dev: true - - /read-package-json@6.0.4: - resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - glob: 10.4.5 - json-parse-even-better-errors: 3.0.2 - normalize-package-data: 5.0.0 - npm-normalize-package-bin: 3.0.1 - dev: true - - /read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} - dependencies: - find-up: 2.1.0 - read-pkg: 3.0.0 - dev: true - /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} @@ -10716,15 +4616,6 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} - dependencies: - load-json-file: 4.0.0 - normalize-package-data: 2.5.0 - path-type: 3.0.0 - dev: true - /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} @@ -10735,30 +4626,6 @@ packages: type-fest: 0.6.0 dev: true - /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - dev: true - - /read@2.1.0: - resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - mute-stream: 1.0.0 - dev: true - - /read@3.0.1: - resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - mute-stream: 1.0.0 - dev: true - /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: @@ -10769,6 +4636,7 @@ packages: safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 + dev: false /readable-stream@3.6.2: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} @@ -10778,18 +4646,6 @@ packages: string_decoder: 1.3.0 util-deprecate: 1.0.2 - /realpath-native@2.0.0: - resolution: {integrity: sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==} - engines: {node: '>=8'} - dev: true - - /rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} - dependencies: - resolve: 1.22.8 - dev: true - /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -10804,26 +4660,10 @@ packages: /regexp-to-ast@0.5.0: resolution: {integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==} - /regexp.prototype.flags@1.5.3: - resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-errors: 1.3.0 - set-function-name: 2.0.2 - dev: true - /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} - - /release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} - dependencies: - es6-error: 4.1.1 - dev: true + dev: false /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} @@ -10839,75 +4679,21 @@ packages: engines: {node: '>= 0.10'} dev: false - /request@2.88.2: - resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} - engines: {node: '>= 6'} - deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 - dependencies: - aws-sign2: 0.7.0 - aws4: 1.13.2 - caseless: 0.12.0 - combined-stream: 1.0.8 - extend: 3.0.2 - forever-agent: 0.6.1 - form-data: 2.3.3 - har-validator: 5.1.5 - http-signature: 1.2.0 - is-typedarray: 1.0.0 - isstream: 0.1.2 - json-stringify-safe: 5.0.1 - mime-types: 2.1.35 - oauth-sign: 0.9.0 - performance-now: 2.1.0 - qs: 6.5.3 - safe-buffer: 5.2.1 - tough-cookie: 2.5.0 - tunnel-agent: 0.6.0 - uuid: 3.4.0 - dev: true - /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} + dev: true /require-from-string@2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} requiresBuild: true - - /require-in-the-middle@7.4.0: - resolution: {integrity: sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==} - engines: {node: '>=8.6.0'} - dependencies: - debug: 4.3.7 - module-details-from-path: 1.0.3 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color dev: false /require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} dev: true - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - dev: true - - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} - dependencies: - resolve-from: 5.0.0 - - /resolve-dir@1.0.1: - resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} - engines: {node: '>=0.10.0'} - dependencies: - expand-tilde: 2.0.2 - global-modules: 1.0.0 - dev: true - /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -10916,7 +4702,7 @@ packages: /resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - requiresBuild: true + dev: true /resolve-global@1.0.0: resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} @@ -10925,18 +4711,6 @@ packages: global-dirs: 0.1.1 dev: true - /resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - dev: true - - /resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} - - /resolve@1.1.7: - resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} - dev: true - /resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true @@ -10944,6 +4718,7 @@ packages: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + dev: true /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} @@ -10953,11 +4728,6 @@ packages: signal-exit: 3.0.7 dev: true - /retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} - dev: true - /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} @@ -10966,14 +4736,6 @@ packages: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} dev: true - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - dependencies: - glob: 7.1.6 - dev: true - /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported @@ -10981,19 +4743,6 @@ packages: dependencies: glob: 7.1.6 - /rimraf@4.4.1: - resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} - engines: {node: '>=14'} - hasBin: true - dependencies: - glob: 9.3.5 - dev: true - - /run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - dev: true - /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: @@ -11005,60 +4754,22 @@ packages: tslib: 2.7.0 dev: true - /safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - isarray: 2.0.5 - dev: true - /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: false /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - /safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-regex: 1.1.4 - dev: true - /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} engines: {node: '>=10'} dev: false - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - dev: true - /sax@1.3.0: resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} dev: false - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} - dependencies: - xmlchars: 2.2.0 - dev: true - - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} - dependencies: - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - /semver-compare@1.0.0: resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} dev: true @@ -11066,10 +4777,7 @@ packages: /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true - - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true + dev: true /semver@7.3.2: resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} @@ -11084,14 +4792,6 @@ packages: dependencies: lru-cache: 6.0.0 - /semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} engines: {node: '>=10'} @@ -11099,12 +4799,6 @@ packages: dependencies: lru-cache: 6.0.0 - /serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} - dependencies: - randombytes: 2.1.0 - dev: true - /set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} dev: true @@ -11121,116 +4815,18 @@ packages: has-property-descriptors: 1.0.2 dev: true - /set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.2 - dev: true - - /setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - dev: true - - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} - dependencies: - kind-of: 6.0.3 - dev: true - - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - dependencies: - shebang-regex: 1.0.0 - dev: true - /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: true - /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - dev: true - - /shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true - dependencies: - glob: 7.1.6 - interpret: 1.4.0 - rechoir: 0.6.2 - dev: true - - /shimmer@1.2.1: - resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} - dev: false - - /shx@0.3.3: - resolution: {integrity: sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==} - engines: {node: '>=6'} - hasBin: true - dependencies: - minimist: 1.2.8 - shelljs: 0.8.5 - dev: true - - /side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.2 - dev: true - /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - dev: true - - /sigstore@1.9.0: - resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - '@sigstore/bundle': 1.1.0 - '@sigstore/protobuf-specs': 0.2.1 - '@sigstore/sign': 1.0.0 - '@sigstore/tuf': 1.0.3 - make-fetch-happen: 11.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /simple-git@3.12.0: - resolution: {integrity: sha512-cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==} - dependencies: - '@kwsites/file-exists': 1.1.1 - '@kwsites/promise-deferred': 1.1.1 - debug: 4.3.7 - transitivePeerDependencies: - - supports-color dev: true /simple-swizzle@0.2.2: @@ -11239,9 +4835,6 @@ packages: is-arrayish: 0.3.2 dev: false - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -11263,77 +4856,22 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: true - - /smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true - dependencies: - array.prototype.flat: 1.3.2 - breakword: 1.0.6 - grapheme-splitter: 1.0.4 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 15.4.1 - dev: true - - /socks-proxy-agent@7.0.0: - resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: '>= 10'} - dependencies: - agent-base: 6.0.2 - debug: 4.3.7 - socks: 2.8.3 - transitivePeerDependencies: - - supports-color - dev: true - - /socks@2.8.3: - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} - dependencies: - ip-address: 9.0.5 - smart-buffer: 4.2.0 - dev: true - /sort-any@1.2.9: resolution: {integrity: sha512-6LEFNVLeWrbCpFxhS+KdZypqY4XrtOA1dY1vQSacR91SJ/sXKUrR1wK7AUgLOXlLVXnaws3NcZ8lZPMdfkhlHw==} dependencies: lodash: 4.17.21 - - /sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} - dependencies: - is-plain-obj: 1.1.0 - dev: true + dev: false /source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} dev: true - /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - /source-map-support@0.5.19: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 dev: true /source-map@0.5.6: @@ -11344,24 +4882,6 @@ packages: /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} - - /spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} - dependencies: - foreground-child: 2.0.0 - is-windows: 1.0.2 - make-dir: 3.1.0 - rimraf: 3.0.2 - signal-exit: 3.0.7 - which: 2.0.2 - dev: true - - /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} - dependencies: - cross-spawn: 5.1.0 - signal-exit: 3.0.7 dev: true /spdx-correct@3.2.0: @@ -11392,53 +4912,9 @@ packages: readable-stream: 3.6.2 dev: true - /split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} - dependencies: - through: 2.3.8 - dev: true - /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - /sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - dev: true - - /sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} - hasBin: true - dependencies: - asn1: 0.2.6 - assert-plus: 1.0.0 - bcrypt-pbkdf: 1.0.2 - dashdash: 1.14.1 - ecc-jsbn: 0.1.2 - getpass: 0.1.7 - jsbn: 0.1.1 - safer-buffer: 2.1.2 - tweetnacl: 0.14.5 - dev: true - - /ssri@10.0.6: - resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minipass: 7.1.2 - dev: true - - /ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - minipass: 3.3.6 - dev: true - - /stack-chain@1.3.7: - resolution: {integrity: sha512-D8cWtWVdIe/jBA7v5p5Hwl5yOSOrmZPWDPe2KxQ5UAGD+nxbxU0lKXA4h85Ta6+qgdKVL3vUxsbIZjc1kBG7ug==} - dev: false - /stack-generator@2.0.10: resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} dependencies: @@ -11449,18 +4925,12 @@ packages: resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} dev: false - /stack-utils@1.0.5: - resolution: {integrity: sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==} - engines: {node: '>=8'} - dependencies: - escape-string-regexp: 2.0.0 - dev: true - /stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 + dev: true /stackframe@1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} @@ -11485,12 +4955,6 @@ packages: resolution: {integrity: sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ==} dev: true - /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} - dependencies: - mixme: 0.5.10 - dev: true - /streamroller@2.2.3: resolution: {integrity: sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==} engines: {node: '>=8.0'} @@ -11508,23 +4972,6 @@ packages: engines: {node: '>=0.6.19'} dev: true - /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} - dependencies: - char-regex: 1.0.2 - strip-ansi: 6.0.1 - - /string-replace-loader@3.1.0(webpack@5.95.0): - resolution: {integrity: sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==} - peerDependencies: - webpack: ^5 - dependencies: - loader-utils: 2.0.4 - schema-utils: 3.3.0 - webpack: 5.95.0(esbuild@0.17.12) - dev: true - /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -11533,56 +4980,11 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.1.0 - dev: true - - /string.prototype.padend@3.1.6: - resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - dev: true - - /string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - dev: true - - /string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - dev: true - - /string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - dev: true - /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 + dev: false /string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} @@ -11604,13 +5006,6 @@ packages: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - dependencies: - ansi-regex: 6.1.0 - dev: true - /strip-bom-buf@1.0.0: resolution: {integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==} engines: {node: '>=4'} @@ -11638,13 +5033,10 @@ packages: engines: {node: '>=4'} dev: true - /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} + dev: true /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} @@ -11656,6 +5048,7 @@ packages: /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + dev: false /strnum@1.0.5: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} @@ -11683,18 +5076,9 @@ packages: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - dependencies: - has-flag: 4.0.0 - /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true /table@6.8.1: @@ -11706,11 +5090,7 @@ packages: slice-ansi: 4.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 - - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - dev: true + dev: false /tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} @@ -11723,85 +5103,6 @@ packages: readable-stream: 3.6.2 dev: true - /tar@6.1.11: - resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} - engines: {node: '>= 10'} - dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 3.3.6 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 - dev: true - - /temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - dev: true - - /temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - dev: true - - /tempfile@3.0.0: - resolution: {integrity: sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==} - engines: {node: '>=8'} - dependencies: - temp-dir: 2.0.0 - uuid: 3.4.0 - dev: true - - /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - dev: true - - /terser-webpack-plugin@5.3.10(esbuild@0.17.12)(webpack@5.95.0): - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - esbuild: 0.17.12 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.2 - terser: 5.34.1 - webpack: 5.95.0(esbuild@0.17.12) - dev: true - - /terser@5.34.1: - resolution: {integrity: sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - '@jridgewell/source-map': 0.3.6 - acorn: 8.12.1 - commander: 2.20.3 - source-map-support: 0.5.21 - dev: true - - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} - dependencies: - '@istanbuljs/schema': 0.1.3 - glob: 7.1.6 - minimatch: 3.1.2 - /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} @@ -11813,6 +5114,7 @@ packages: /text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: false /textextensions@5.16.0: resolution: {integrity: sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==} @@ -11832,13 +5134,6 @@ packages: any-promise: 1.3.0 dev: true - /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} - dependencies: - readable-stream: 2.3.8 - xtend: 4.0.2 - dev: true - /through2@4.0.2: resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: @@ -11862,13 +5157,6 @@ packages: tmp: 0.2.1 dev: true - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - dependencies: - os-tmpdir: 1.0.2 - dev: true - /tmp@0.2.1: resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} engines: {node: '>=8.17.0'} @@ -11876,12 +5164,10 @@ packages: rimraf: 3.0.2 dev: true - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} + dev: true /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} @@ -11889,38 +5175,9 @@ packages: dependencies: is-number: 7.0.0 - /tough-cookie@2.5.0: - resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} - engines: {node: '>=0.8'} - dependencies: - psl: 1.9.0 - punycode: 2.3.1 - dev: true - - /tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} - dependencies: - psl: 1.9.0 - punycode: 2.3.1 - universalify: 0.2.0 - url-parse: 1.5.10 - dev: true - /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} - dependencies: - punycode: 2.3.1 - dev: true - - /traverse@0.3.9: - resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==} - dev: true - /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} @@ -11930,41 +5187,6 @@ packages: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: false - /ts-jest@29.0.5(@babel/core@7.25.7)(esbuild@0.17.12)(jest@29.5.0)(typescript@4.9.4): - resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.25.7 - bs-logger: 0.2.6 - esbuild: 0.17.12 - fast-json-stable-stringify: 2.1.0 - jest: 29.5.0(@types/node@18.11.9)(ts-node@8.5.2) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.9.4 - yargs-parser: 21.1.1 - dev: true - /ts-node@8.5.2(typescript@4.9.4): resolution: {integrity: sha512-W1DK/a6BGoV/D4x/SXXm6TSQx6q3blECUzd5TN+j56YEMX3yPVMpHsICLedUw3DvGF3aTQ8hfdR9AKMaHjIi+A==} engines: {node: '>=4.2.0'} @@ -11978,14 +5200,6 @@ packages: source-map-support: 0.5.19 typescript: 4.9.4 yn: 3.1.1 - - /tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} - dependencies: - '@types/json5': 0.0.29 - json5: 1.0.2 - minimist: 1.2.8 - strip-bom: 3.0.0 dev: true /tsconfig-paths@4.2.0: @@ -12001,257 +5215,78 @@ packages: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: false - /tslib@2.7.0: - resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} - - /tsutils@3.21.0(typescript@4.9.4): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - 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' - dependencies: - tslib: 1.14.1 - typescript: 4.9.4 - dev: false - - /tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true - dependencies: - chalk: 4.1.2 - csv: 5.5.3 - kleur: 4.1.5 - smartwrap: 2.0.2 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 17.7.2 - dev: true - - /tuf-js@1.1.7: - resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@tufjs/models': 1.0.4 - debug: 4.3.7 - make-fetch-happen: 11.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - dependencies: - safe-buffer: 5.2.1 - dev: true - - /tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - dev: true - - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - dependencies: - prelude-ls: 1.2.1 - - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - /type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - dev: true - - /type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - dev: true - - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - - /type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - dev: true - - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - dev: true - - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - - /type@1.2.0: - resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} - dev: true - - /type@2.7.2: - resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} - dev: true - - /typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-typed-array: 1.1.13 - dev: true - - /typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - dev: true - - /typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - dev: true - - /typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - possible-typed-array-names: 1.0.0 - dev: true - - /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - dependencies: - is-typedarray: 1.0.0 - dev: true - - /typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - dev: true - - /typescript@4.9.4: - resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} - engines: {node: '>=4.2.0'} - hasBin: true - - /uglify-js@3.19.3: - resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true + /tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} dev: true - optional: true - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + /tsutils@3.21.0(typescript@4.9.4): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + 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' dependencies: - call-bind: 1.0.7 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - dev: true + tslib: 1.14.1 + typescript: 4.9.4 + dev: false - /unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} dependencies: - unique-slug: 3.0.0 + prelude-ls: 1.2.1 + dev: false + + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} dev: true - /unique-filename@3.0.0: - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - unique-slug: 4.0.0 + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} dev: true - /unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - imurmurhash: 0.1.4 + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} dev: true - /unique-slug@4.0.0: - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - imurmurhash: 0.1.4 + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + /type@1.2.0: + resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} dev: true - /universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + /type@2.7.2: + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} dev: true + /typescript@4.9.4: + resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} + engines: {node: '>=4.2.0'} + hasBin: true + /universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} - - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - dev: true + dev: false /universalify@2.0.1: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} - /unzipper@0.10.14: - resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==} - dependencies: - big-integer: 1.6.52 - binary: 0.3.0 - bluebird: 3.4.7 - buffer-indexof-polyfill: 1.0.2 - duplexer2: 0.1.4 - fstream: 1.0.12 - graceful-fs: 4.2.11 - listenercount: 1.0.1 - readable-stream: 2.3.8 - setimmediate: 1.0.5 - dev: true - - /upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - dev: true - - /update-browserslist-db@1.1.1(browserslist@4.24.0): - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: 4.24.0 - escalade: 3.2.0 - picocolors: 1.1.0 - - /update-ts-references@3.2.1(ts-jest@29.0.5): + /update-ts-references@3.2.1: resolution: {integrity: sha512-ur9psM1Jvg67Y1ErSIX/zAG5t934ZfZwigB4hZwzmOwn4Cgez3sEoUUvSYvvxj4nLgWdkPKQVDL53MwA+DEndw==} engines: {node: '>=14.0.0'} hasBin: true dependencies: - '@formatjs/cli': 2.15.0(ts-jest@29.0.5) + '@formatjs/cli': 2.15.0 comment-json: 4.2.5 glob: 7.1.6 js-yaml: 4.1.0 @@ -12266,50 +5301,14 @@ packages: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.1 - - /url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} dev: false - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 - dev: true - /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - /uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - dev: true - - /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true - - /uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - hasBin: true - dev: true - - /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true - /v8-compile-cache@2.4.0: resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - - /v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} - engines: {node: '>=10.12.0'} - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - '@types/istanbul-lib-coverage': 2.0.6 - convert-source-map: 2.0.0 + dev: false /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -12318,28 +5317,6 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /validate-npm-package-name@3.0.0: - resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} - dependencies: - builtins: 1.0.3 - dev: true - - /validate-npm-package-name@5.0.0: - resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - builtins: 5.1.0 - dev: true - - /verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} - dependencies: - assert-plus: 1.0.0 - core-util-is: 1.0.2 - extsprintf: 1.3.0 - dev: true - /vinyl-file@3.0.0: resolution: {integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==} engines: {node: '>=4'} @@ -12407,42 +5384,9 @@ packages: dependencies: vscode-languageserver-protocol: 3.17.2 - /vscode-test@1.6.1: - resolution: {integrity: sha512-086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA==} - engines: {node: '>=8.9.3'} - deprecated: This package has been renamed to @vscode/test-electron, please update to the new name - dependencies: - http-proxy-agent: 4.0.1 - https-proxy-agent: 5.0.1 - rimraf: 3.0.2 - unzipper: 0.10.14 - transitivePeerDependencies: - - supports-color - dev: true - /vscode-uri@2.1.2: resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} - dependencies: - xml-name-validator: 4.0.0 - dev: true - - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - dependencies: - makeerror: 1.0.12 - - /watchpack@2.4.2: - resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} - engines: {node: '>=10.13.0'} - dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - dev: true - /wcwidth@1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: @@ -12452,121 +5396,16 @@ packages: /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - dev: true - - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - dev: true - - /webpack@5.95.0(esbuild@0.17.12): - resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/estree': 1.0.6 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 - acorn: 8.12.1 - acorn-import-attributes: 1.9.5(acorn@8.12.1) - browserslist: 4.24.0 - chrome-trace-event: 1.0.4 - enhanced-resolve: 5.17.1 - es-module-lexer: 1.5.4 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(esbuild@0.17.12)(webpack@5.95.0) - watchpack: 2.4.2 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} - dependencies: - iconv-lite: 0.6.3 - dev: true - - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - dev: true - - /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} - dependencies: - tr46: 3.0.0 - webidl-conversions: 7.0.0 - dev: true - /whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - dev: true - /which-module@2.0.1: resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} dev: true - /which-pm@2.2.0: - resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} - engines: {node: '>=8.15'} - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - dev: true - - /which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.2 - dev: true - - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - dependencies: - isexe: 2.0.0 - dev: true - /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} @@ -12574,20 +5413,6 @@ packages: dependencies: isexe: 2.0.0 - /which@3.0.1: - resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - isexe: 2.0.0 - dev: true - - /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - dependencies: - string-width: 4.2.3 - dev: true - /winston-transport@4.3.0: resolution: {integrity: sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==} engines: {node: '>= 6.4.0'} @@ -12621,15 +5446,6 @@ packages: winston-transport: 4.6.0 dev: false - /word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} - dev: true - - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - dev: true - /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} @@ -12646,98 +5462,11 @@ packages: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.1.0 dev: true /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} - dependencies: - graceful-fs: 4.2.11 - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - dev: true - - /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - dependencies: - imurmurhash: 0.1.4 - is-typedarray: 1.0.0 - signal-exit: 3.0.7 - typedarray-to-buffer: 3.1.5 - dev: true - - /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dependencies: - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - - /write-file-atomic@5.0.1: - resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - imurmurhash: 0.1.4 - signal-exit: 4.1.0 - dev: true - - /write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} - dependencies: - detect-indent: 5.0.0 - graceful-fs: 4.2.11 - make-dir: 2.1.0 - pify: 4.0.1 - sort-keys: 2.0.0 - write-file-atomic: 2.4.3 - dev: true - - /write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} - dependencies: - sort-keys: 2.0.0 - type-fest: 0.4.1 - write-json-file: 3.2.0 - dev: true - - /ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - 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 - dev: false - - /ws@8.18.0: - resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} - 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 - dev: true - /xml-js@1.6.11: resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} hasBin: true @@ -12745,24 +5474,6 @@ packages: sax: 1.3.0 dev: false - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - dev: true - - /xml@1.0.1: - resolution: {integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==} - dev: true - - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - dev: true - - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - dev: true - /y18n@4.0.3: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} dev: true @@ -12770,14 +5481,8 @@ packages: /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} - - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} dev: true - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} @@ -12799,11 +5504,6 @@ packages: decamelize: 1.2.0 dev: true - /yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - dev: true - /yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} @@ -12812,6 +5512,7 @@ packages: /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} + dev: true /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} @@ -12830,19 +5531,6 @@ packages: yargs-parser: 18.1.3 dev: true - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - dependencies: - cliui: 7.0.4 - escalade: 3.2.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - dev: true - /yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} @@ -12854,14 +5542,17 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 + dev: true /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} + dev: true /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + dev: true node-linker: hoisted diff --git a/test-packages/test-utils/package.json b/test-packages/test-utils/package.json index efe330514..61c142a95 100644 --- a/test-packages/test-utils/package.json +++ b/test-packages/test-utils/package.json @@ -28,11 +28,12 @@ "proxy-from-env": "1.1.0" }, "devDependencies": { - "@types/node-fetch": "2.5.10" + "@types/node-fetch": "2.5.10", + "@types/lodash": "4.14.168" }, "scripts": { "ci": "npm-run-all clean compile lint", - "clean": "rimraf ./lib ./coverage ./nyc_output ./.model-cache", + "clean": "rimraf ./lib ./coverage ./.model-cache", "compile": "pnpm run clean && tsc -p .", "compile:watch": "tsc -p . --watch", "lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore" From 25183182a65e6d41911afbfa81efeada753e0f54 Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Tue, 15 Oct 2024 15:36:39 +0200 Subject: [PATCH 5/9] fix: parallel nx task --- nx.json | 2 +- package.json | 2 +- .../vscode-ui5-language-assistant/tsconfig.json | 17 +++++++++++++---- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/nx.json b/nx.json index 83ce3ceb5..14421ab07 100644 --- a/nx.json +++ b/nx.json @@ -20,7 +20,7 @@ "outputs": ["{projectRoot}/lib"] }, "dev": { - "dependsOn": ["^compile"], + "dependsOn": ["compile"], "outputs": ["{projectRoot}/lib"] }, "compile": { diff --git a/package.json b/package.json index 904e2297e..e79a90561 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@ui5-language-assistant/root", "private": true, "scripts": { - "build:quick": "nx run-many --target=compile --all --parallel=1", + "build:quick": "nx run-many --target=compile --parallel=1", "release:version": "pnpm version --force-publish", "release:publish": "pnpm publish from-package --yes", "ci": "npm-run-all format:validate ci:subpackages legal:*", diff --git a/packages/vscode-ui5-language-assistant/tsconfig.json b/packages/vscode-ui5-language-assistant/tsconfig.json index c431e07be..067692a0f 100644 --- a/packages/vscode-ui5-language-assistant/tsconfig.json +++ b/packages/vscode-ui5-language-assistant/tsconfig.json @@ -8,19 +8,28 @@ "include": ["src/**/*", "test/**/*", "api.d.ts", "src/manifest/*.json"], "references": [ { - "path": "../language-server" + "path": "../binding-parser" }, { - "path": "../binding" + "path": "../constant" }, { - "path": "../settings" + "path": "../context" }, { "path": "../logic-utils" }, { - "path": "../user-facing-text" + "path": "../settings" + }, + { + "path": "../language-server" + }, + { + "path": "../../test-packages/framework" + }, + { + "path": "../binding" } ] } From 06636efad89256aece6ee2d254d82edef890720a Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Tue, 15 Oct 2024 15:38:49 +0200 Subject: [PATCH 6/9] fix: testing github action --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f4217d80c..9c6fb5a08 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,9 +2,9 @@ name: Release workflow on: push: - branches: [master] + branches: [feat/pnpm] pull_request: - branches: [master] + branches: [feat/pnpm] env: GHR_PROJECT_REPONAME: ui5-language-assistant @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [18.x, 20.x] + node-version: [18.x] runs-on: ${{ matrix.os }} steps: - name: Checkout code repository From a69a980867d83085d5265f01d78c7db2023c98d8 Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Tue, 15 Oct 2024 15:46:13 +0200 Subject: [PATCH 7/9] fix: testing github action 02 --- .github/workflows/release.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9c6fb5a08..82e1c0915 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,6 +22,19 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 # will fetch all history + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + run_install: true + - name: Cache pnpm modules + uses: actions/cache@v4 + env: + cache-name: cache-pnpm-modules + with: + path: ~/.pnpm-store + key: ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- - name: Install pnpm modules run: pnpm install - name: Run build From 0f36559ea40be86ebd06e78309e259bd5a4b1aea Mon Sep 17 00:00:00 2001 From: Danyal Aslam Date: Tue, 26 Nov 2024 11:52:10 +0100 Subject: [PATCH 8/9] fix: added nx caching --- nx.json | 9 +++------ packages/language-server/api.d.ts | 12 ++++++------ test-packages/test-utils/api.d.ts | 4 +++- test-packages/test-utils/package.json | 5 ----- .../test-utils/src/utils/semantic-model-provider.ts | 4 +++- 5 files changed, 15 insertions(+), 19 deletions(-) diff --git a/nx.json b/nx.json index 14421ab07..944fa1a2f 100644 --- a/nx.json +++ b/nx.json @@ -3,7 +3,7 @@ "default": { "runner": "@nrwl/nx-cloud", "options": { - "cacheableOperations": ["compile", "lint", "test"], + "cacheableOperations": ["build:quick", "compile", "lint", "test"], "accessToken": "", "canTrackAnalytics": false, "showUsageWarnings": true @@ -16,14 +16,11 @@ }, "targetDefaults": { "build:quick": { - "dependsOn": ["compile"], + "dependsOn": ["^compile"], "outputs": ["{projectRoot}/lib"] }, "dev": { - "dependsOn": ["compile"], - "outputs": ["{projectRoot}/lib"] - }, - "compile": { + "dependsOn": ["^compile"], "outputs": ["{projectRoot}/lib"] }, "test": { diff --git a/packages/language-server/api.d.ts b/packages/language-server/api.d.ts index 881647d76..2b3c9eb8d 100644 --- a/packages/language-server/api.d.ts +++ b/packages/language-server/api.d.ts @@ -25,10 +25,10 @@ export type ServerInitializationOptions = { logLevel?: LogLevel; }; -export type FetchResponse = { - ok: boolean; - status: number; - json: () => Promise; -}; +// export type FetchResponse = { +// ok: boolean; +// status: number; +// json: () => Promise; +// }; -export type Fetcher = (url: string) => Promise; +// export type Fetcher = (url: string) => Promise; diff --git a/test-packages/test-utils/api.d.ts b/test-packages/test-utils/api.d.ts index 583bcc63c..6bb8851fa 100644 --- a/test-packages/test-utils/api.d.ts +++ b/test-packages/test-utils/api.d.ts @@ -19,7 +19,9 @@ import { } from "@ui5-language-assistant/semantic-model-types"; import { XMLAttribute, XMLElement } from "@xml-tools/ast"; import { UI5XMLViewCompletion } from "@ui5-language-assistant/xml-views-completion"; -import { FetchResponse } from "@ui5-language-assistant/language-server"; +import { + FetchResponse +} from "@ui5-language-assistant/logic-utils"; import { DEFAULT_UI5_VERSION } from "@ui5-language-assistant/constant"; // easily build (partial) data structures for tests with mandatory "name" field diff --git a/test-packages/test-utils/package.json b/test-packages/test-utils/package.json index 61c142a95..271cffa09 100644 --- a/test-packages/test-utils/package.json +++ b/test-packages/test-utils/package.json @@ -13,11 +13,6 @@ "license": "Apache-2.0", "typings": "./api.d.ts", "dependencies": { - "@ui5-language-assistant/constant": "workspace:*", - "@ui5-language-assistant/language-server": "workspace:*", - "@ui5-language-assistant/semantic-model-types": "4.0.11", - "@ui5-language-assistant/test-utils": "workspace:*", - "@ui5-language-assistant/xml-views-completion": "workspace:*", "@xml-tools/ast": "5.0.0", "chai": "4.2.0", "deep-equal-in-any-order": "1.0.28", diff --git a/test-packages/test-utils/src/utils/semantic-model-provider.ts b/test-packages/test-utils/src/utils/semantic-model-provider.ts index fa79cf9ed..a36ff2998 100644 --- a/test-packages/test-utils/src/utils/semantic-model-provider.ts +++ b/test-packages/test-utils/src/utils/semantic-model-provider.ts @@ -2,7 +2,9 @@ import { readdirSync } from "fs"; import { readJsonSync, readJson, existsSync } from "fs-extra"; import { resolve, dirname } from "path"; import { filter, reduce, has, forEach, get } from "lodash"; -import { FetchResponse } from "@ui5-language-assistant/language-server"; +import { + FetchResponse +} from "@ui5-language-assistant/logic-utils"; import { UI5Framework, UI5SemanticModel, From 1debf931d936dbcb8c010afd295c82ecb9042cb2 Mon Sep 17 00:00:00 2001 From: D068279 Date: Wed, 27 Nov 2024 13:36:01 +0530 Subject: [PATCH 9/9] fix: rename workflow file --- .github/workflows/{deploy_maual.yaml => deploy_manual.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{deploy_maual.yaml => deploy_manual.yaml} (100%) diff --git a/.github/workflows/deploy_maual.yaml b/.github/workflows/deploy_manual.yaml similarity index 100% rename from .github/workflows/deploy_maual.yaml rename to .github/workflows/deploy_manual.yaml